summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-04-23 14:48:16 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-04-23 14:48:16 +0200
commitb6e55adfc8cb425da7c3c72bc3f14e3c28a1291d (patch)
treedc03843096de812545bae7978b88856bee2ef06f /src
parent63ebae13159a107a5f970279cf8ab8713699789f (diff)
downloadabrt-b6e55adfc8cb425da7c3c72bc3f14e3c28a1291d.tar.gz
abrt-b6e55adfc8cb425da7c3c72bc3f14e3c28a1291d.tar.xz
abrt-b6e55adfc8cb425da7c3c72bc3f14e3c28a1291d.zip
Fixed crash on F11 ticket#51
Diffstat (limited to 'src')
-rw-r--r--src/Gui/CCReporterDialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py
index f9669ba..d22f07f 100644
--- a/src/Gui/CCReporterDialog.py
+++ b/src/Gui/CCReporterDialog.py
@@ -76,7 +76,7 @@ class ReporterDialog():
def on_comment_focus_cb(self, widget, event):
if not self.comment_changed:
- widget.set_buffer(None)
+ widget.set_buffer(gtk.TextBuffer())
self.comment_changed = True
def on_window_resize(self, treeview, allocation):