summaryrefslogtreecommitdiffstats
path: root/src/Gui/SettingsDialog.py
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-18 13:15:23 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-18 13:15:23 +0200
commit2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2 (patch)
treea4b965e5acc5bd424b3f0cca2f697d861e31b24d /src/Gui/SettingsDialog.py
parent20eb553c3ac2187e8347f093f6ba480ceb85627b (diff)
downloadabrt-2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2.tar.gz
abrt-2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2.tar.xz
abrt-2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2.zip
whitespace cleanup, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui/SettingsDialog.py')
-rw-r--r--src/Gui/SettingsDialog.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Gui/SettingsDialog.py b/src/Gui/SettingsDialog.py
index 2ad67d78..a16a776b 100644
--- a/src/Gui/SettingsDialog.py
+++ b/src/Gui/SettingsDialog.py
@@ -30,7 +30,7 @@ class SettingsDialog:
# ===============================================
columns = [None]*1
columns[0] = gtk.TreeViewColumn('Name')
-
+
# create list
for column in columns:
n = self.pluginlist.append_column(column)
@@ -38,7 +38,7 @@ class SettingsDialog:
column.pack_start(column.cell, False)
column.set_attributes(column.cell, markup=(n-1))
column.set_resizable(True)
-
+
# toggle
toggle_renderer = gtk.CellRendererToggle()
toggle_renderer.set_property('activatable', True)
@@ -46,7 +46,7 @@ class SettingsDialog:
column = gtk.TreeViewColumn('Enabled', toggle_renderer)
column.add_attribute( toggle_renderer, "active", 1)
self.pluginlist.insert_column(column, 0)
-
+
#connect signals
self.pluginlist.connect("cursor-changed", self.on_tvDumps_cursor_changed)
self.builder.get_object("bConfigurePlugin").connect("clicked", self.on_bConfigurePlugin_clicked, self.pluginlist)
@@ -66,7 +66,7 @@ class SettingsDialog:
# FIXME: create class plugin and move this into method Plugin.Enable()
plugin.Enabled = "yes"
plugin.Settings = PluginSettings(self.ccdaemon.getPluginSettings(plugin.getName()))
- model[path][1] = not model[path][1]
+ model[path][1] = not model[path][1]
def filter_plugins(self, model, miter, data):
return True
@@ -120,7 +120,7 @@ class SettingsDialog:
else:
print "unknown response from settings dialog"
ui.destroy()
-
+
def on_bClose_clicked(self, button):
self.window.destroy()