Ignore:
Timestamp:
Apr 19, 2017 7:07:46 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:
e1e3e09
Parents:
cd2cc745
Message:

Added data weighting prototype

File:
1 edited

Legend:

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

    r83eb5208 r9d266d2  
    5252        self._workspace = parent 
    5353        self._parent = parent 
    54  
    55         # Reactor - singleton 
    56         self.setReactor(reactor) 
    5754 
    5855        # Add signal callbacks 
     
    162159        self.progress.setVisible(False) 
    163160 
    164     def fileRead(self, data): 
     161    def fileWasRead(self, data): 
    165162        """ 
    166163        Callback for fileDataReceivedSignal 
     
    208205        """ Accessor for the communicator """ 
    209206        return self.communicate 
    210  
    211     def reactor(self): 
    212         """ Accessor for the reactor """ 
    213         return self._reactor 
    214  
    215     def setReactor(self, reactor): 
    216         """ Reactor setter """ 
    217         self._reactor = reactor 
    218207 
    219208    def perspective(self): 
     
    338327        """ 
    339328        self.communicate = GuiUtils.Communicate() 
    340         self.communicate.fileDataReceivedSignal.connect(self.fileRead) 
     329        self.communicate.fileDataReceivedSignal.connect(self.fileWasRead) 
    341330        self.communicate.statusBarUpdateSignal.connect(self.updateStatusBar) 
    342331        self.communicate.updatePerspectiveWithDataSignal.connect(self.updatePerspective) 
Note: See TracChangeset for help on using the changeset viewer.