Changeset f51ed67 in sasview for src/sas/qtgui/AboutBox.py
- Timestamp:
- Aug 10, 2016 10: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/AboutBox.py
r481ff26 rf51ed67 1 1 import functools 2 from PyQt4 import QtGui 2 3 3 4 import sas.sasview … … 5 6 import GuiUtils 6 7 7 from UI.AboutUI import AboutUI8 from UI.AboutUI import Ui_AboutUI 8 9 9 class AboutBox( AboutUI):10 class AboutBox(QtGui.QDialog, Ui_AboutUI): 10 11 def __init__(self, parent=None): 11 12 super(AboutBox, self).__init__(parent) 13 self.setupUi(self) 14 12 15 self.setWindowTitle("About") 13 16
Note: See TracChangeset
for help on using the changeset viewer.