summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCMainWindow.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-02-27 16:01:57 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2009-02-27 16:01:57 +0100
commitebd0025f033ecf8f21d42e6a2c80ac312ec8116f (patch)
treed1775011eb97d381b0fa5c8c56fc3608b98a2b66 /src/Gui/CCMainWindow.py
parent5a736b8527fa667fde9d925b9139554334665036 (diff)
downloadabrt-ebd0025f033ecf8f21d42e6a2c80ac312ec8116f.tar.gz
abrt-ebd0025f033ecf8f21d42e6a2c80ac312ec8116f.tar.xz
abrt-ebd0025f033ecf8f21d42e6a2c80ac312ec8116f.zip
- fixed few gcc warnings
- added scrolled window for long reports - fixes for all issues identified in review (awilliam@redhat.com)
Diffstat (limited to 'src/Gui/CCMainWindow.py')
-rw-r--r--src/Gui/CCMainWindow.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py
index ab2e171d..0c589f60 100644
--- a/src/Gui/CCMainWindow.py
+++ b/src/Gui/CCMainWindow.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
import sys
import pygtk
pygtk.require("2.0")
@@ -14,7 +12,6 @@ from CCReport import Report
def cb(self, *args):
pass
-
class MainWindow():
def __init__(self):
try:
@@ -146,8 +143,7 @@ class MainWindow():
def on_bQuit_clicked(self, button):
gtk.main_quit()
-
-
+
if __name__ == "__main__":
cc = MainWindow()
cc.hydrate()