Changeset 6fd4e36 in sasview for src/sas/qtgui/MainWindow.py
- Timestamp:
- Mar 28, 2017 8:53:29 AM (8 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 0268aed
- Parents:
- a9b568c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow.py
r31c5b58 r6fd4e36 11 11 class MainSasViewWindow(QtGui.QMainWindow, Ui_MainWindow): 12 12 # Main window of the application 13 def __init__(self, reactor,parent=None):13 def __init__(self, parent=None): 14 14 super(MainSasViewWindow, self).__init__(parent) 15 15 self.setupUi(self) … … 21 21 # Create the gui manager 22 22 from GuiManager import GuiManager 23 self.guiManager = GuiManager(self , reactor, self)23 self.guiManager = GuiManager(self) 24 24 25 25 def closeEvent(self, event): … … 57 57 58 58 # Show the main SV window 59 mainwindow = MainSasViewWindow( reactor)59 mainwindow = MainSasViewWindow() 60 60 mainwindow.showMaximized() 61 61
Note: See TracChangeset
for help on using the changeset viewer.