Changeset f51ed67 in sasview for src/sas/qtgui/AboutBox.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/AboutBox.py

    r481ff26 rf51ed67  
    11import functools 
     2from PyQt4 import QtGui 
    23 
    34import sas.sasview 
     
    56import GuiUtils 
    67 
    7 from UI.AboutUI import AboutUI 
     8from UI.AboutUI import Ui_AboutUI 
    89 
    9 class AboutBox(AboutUI): 
     10class AboutBox(QtGui.QDialog, Ui_AboutUI): 
    1011    def __init__(self, parent=None): 
    1112        super(AboutBox, self).__init__(parent) 
     13        self.setupUi(self) 
     14 
    1215        self.setWindowTitle("About") 
    1316 
Note: See TracChangeset for help on using the changeset viewer.