Merge branch 'settings'
[gc-dialer] / src / dialcentral.py
index f73c038..86a0db1 100755 (executable)
@@ -1,10 +1,22 @@
-#!/usr/bin/python
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+"""
+Copyright (C) 2007 Christoph Würstle
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2 as
+published by the Free Software Foundation.
+"""
+
 
 import sys
 
-sys.path.insert(0,"/usr/lib/dialcentral/")
 
-from gc_dialer import run_dialpad
+sys.path.append("/opt/dialcentral/lib")
+
+
+import dialcentral_qt
 
-run_dialpad()
 
+if __name__ == "__main__":
+       dialcentral_qt.run()