Changeset f51ed67 in sasview for src/sas/qtgui/GuiManager.py


Ignore:
Timestamp:
Aug 10, 2016 10:07:15 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.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:
0fc37fea
Parents:
51b2b51
Message:

Clean up and automate generation of UI and resources

File:
1 edited

Legend:

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

    rff49d4d rf51ed67  
    2020import LocalConfig 
    2121import GuiUtils 
    22 from UI.AcknowledgementsUI import Acknowledgements 
     22from UI.AcknowledgementsUI import Ui_Acknowledgements 
    2323from AboutBox import AboutBox 
    2424from IPythonWidget import IPythonWidget 
     25from WelcomePanel import WelcomePanel 
    2526 
    2627# Perspectives 
    2728from Perspectives.Invariant.InvariantPerspective import InvariantWindow 
    2829from DataExplorer import DataExplorerWindow 
    29 from WelcomePanel import WelcomePanel 
     30 
     31class Acknowledgements(QtGui.QDialog, Ui_Acknowledgements): 
     32    def __init__(self, parent=None): 
     33        QtGui.QDialog.__init__(self, parent) 
     34        self.setupUi(self) 
    3035 
    3136class GuiManager(object): 
Note: See TracChangeset for help on using the changeset viewer.