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


Ignore:
Timestamp:
Aug 10, 2016 8: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/WelcomePanel.py

    re540cd2 rf51ed67  
    99import LocalConfig 
    1010 
    11 from UI.WelcomePanelUI import WelcomePanelUI 
     11from UI.WelcomePanelUI import Ui_WelcomePanelUI 
    1212 
    13 class WelcomePanel(WelcomePanelUI): 
     13class WelcomePanel(QtGui.QDialog, Ui_WelcomePanelUI): 
    1414    def __init__(self, parent=None): 
    1515        super(WelcomePanel, self).__init__(parent) 
     16        self.setupUi(self) 
     17 
    1618        self.setWindowTitle("Welcome") 
    1719 
Note: See TracChangeset for help on using the changeset viewer.