Changeset 6fd4e36 in sasview for src/sas/qtgui/MainWindow.py


Ignore:
Timestamp:
Mar 28, 2017 6:53:29 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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
Message:

Chi2 display + minor refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow.py

    r31c5b58 r6fd4e36  
    1111class MainSasViewWindow(QtGui.QMainWindow, Ui_MainWindow): 
    1212    # Main window of the application 
    13     def __init__(self, reactor, parent=None): 
     13    def __init__(self, parent=None): 
    1414        super(MainSasViewWindow, self).__init__(parent) 
    1515        self.setupUi(self) 
     
    2121        # Create the gui manager 
    2222        from GuiManager import GuiManager 
    23         self.guiManager = GuiManager(self, reactor, self) 
     23        self.guiManager = GuiManager(self) 
    2424 
    2525    def closeEvent(self, event): 
     
    5757 
    5858    # Show the main SV window 
    59     mainwindow = MainSasViewWindow(reactor) 
     59    mainwindow = MainSasViewWindow() 
    6060    mainwindow.showMaximized() 
    6161 
Note: See TracChangeset for help on using the changeset viewer.