aboutsummaryrefslogtreecommitdiffstats
path: root/bin/commander/aboutdialog.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/commander/aboutdialog.py')
-rw-r--r--bin/commander/aboutdialog.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/commander/aboutdialog.py b/bin/commander/aboutdialog.py
deleted file mode 100644
index 8449bbb1a..000000000
--- a/bin/commander/aboutdialog.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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()
-