Changeset f51ed67 in sasview for src/sas/qtgui/WelcomePanel.py
- Timestamp:
- Aug 10, 2016 8:07:15 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:
- 0fc37fea
- Parents:
- 51b2b51
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/WelcomePanel.py
re540cd2 rf51ed67 9 9 import LocalConfig 10 10 11 from UI.WelcomePanelUI import WelcomePanelUI11 from UI.WelcomePanelUI import Ui_WelcomePanelUI 12 12 13 class WelcomePanel( WelcomePanelUI):13 class WelcomePanel(QtGui.QDialog, Ui_WelcomePanelUI): 14 14 def __init__(self, parent=None): 15 15 super(WelcomePanel, self).__init__(parent) 16 self.setupUi(self) 17 16 18 self.setWindowTitle("Welcome") 17 19
Note: See TracChangeset
for help on using the changeset viewer.