diff options
Diffstat (limited to 'examples/uimodules/uixml.py')
-rw-r--r-- | examples/uimodules/uixml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/uimodules/uixml.py b/examples/uimodules/uixml.py index 8e8ca8c..cabcc80 100644 --- a/examples/uimodules/uixml.py +++ b/examples/uimodules/uixml.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 () def xmlKActionCollection (parent): parent.currentPageObj = PageLaunch (parent) |