Changeset 9d266d2 in sasview for src/sas/qtgui/MainWindow
- Timestamp:
- Apr 19, 2017 9:07:46 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:
- e1e3e09
- Parents:
- cd2cc745
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
r83eb5208 r9d266d2 52 52 self._workspace = parent 53 53 self._parent = parent 54 55 # Reactor - singleton56 self.setReactor(reactor)57 54 58 55 # Add signal callbacks … … 162 159 self.progress.setVisible(False) 163 160 164 def file Read(self, data):161 def fileWasRead(self, data): 165 162 """ 166 163 Callback for fileDataReceivedSignal … … 208 205 """ Accessor for the communicator """ 209 206 return self.communicate 210 211 def reactor(self):212 """ Accessor for the reactor """213 return self._reactor214 215 def setReactor(self, reactor):216 """ Reactor setter """217 self._reactor = reactor218 207 219 208 def perspective(self): … … 338 327 """ 339 328 self.communicate = GuiUtils.Communicate() 340 self.communicate.fileDataReceivedSignal.connect(self.file Read)329 self.communicate.fileDataReceivedSignal.connect(self.fileWasRead) 341 330 self.communicate.statusBarUpdateSignal.connect(self.updateStatusBar) 342 331 self.communicate.updatePerspectiveWithDataSignal.connect(self.updatePerspective)
Note: See TracChangeset
for help on using the changeset viewer.