summaryrefslogtreecommitdiffstats
path: root/examples/uimodules/uimenus.py
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-20 00:05:23 -0600
committerTimothy Pearson <[email protected]>2013-01-20 00:05:23 -0600
commit6677c2f8c66333c3951e8830f8760065c7a29074 (patch)
treee45d51b044ce8575210fca1584852fbbe4742316 /examples/uimodules/uimenus.py
parent1d7616d07ef6f1e6c8131a861ddff208557825e3 (diff)
downloadpytde-6677c2f8c66333c3951e8830f8760065c7a29074.tar.gz
pytde-6677c2f8c66333c3951e8830f8760065c7a29074.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'examples/uimodules/uimenus.py')
-rw-r--r--examples/uimodules/uimenus.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/uimodules/uimenus.py b/examples/uimodules/uimenus.py
index 4e11157..6fc72ff 100644
--- a/examples/uimodules/uimenus.py
+++ b/examples/uimodules/uimenus.py
@@ -2,7 +2,7 @@ import os
from qt import TQLabel
-from tdecore import KApplication
+from tdecore import TDEApplication
class PageLaunch:
def __init__ (self, parent):
@@ -17,7 +17,7 @@ class PageLaunch:
self.page.show ()
- KApplication.kApplication ().processEvents ()
+ TDEApplication.kApplication ().processEvents ()
class PageNotImpl: