summaryrefslogtreecommitdiffstats
path: root/bin/commander/aboutdialog.py
blob: 8449bbb1a4ac4d682a0fc137860d4aa62e209c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# -*- coding: iso8859-15 -*-

from aboutdialogbase import *

class AboutDialog( AboutDialogBase ):
    pass


#------------------------------------------------------------------------#
# main
#------------------------------------------------------------------------#

if __name__ == "__main__":
    import sys
    from qt import *
    app = QApplication( sys.argv )
    mw = AboutDialog()
    mw.exec_loop()