Changeset 6fd4e36 in sasview for src/sas/qtgui/GuiManager.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/GuiManager.py
rb1e36a3 r6fd4e36 46 46 HELP_DIRECTORY_LOCATION = "docs/sphinx-docs/build/html" 47 47 48 def __init__(self, mainWindow=None, reactor=None,parent=None):48 def __init__(self, parent=None): 49 49 """ 50 50 Initialize the manager as a child of MainWindow. 51 51 """ 52 self._workspace = mainWindow52 self._workspace = parent 53 53 self._parent = parent 54 54 55 # Reactor passed from above55 # Reactor - singleton 56 56 self.setReactor(reactor) 57 57
Note: See TracChangeset
for help on using the changeset viewer.