diff options
Diffstat (limited to 'examples/uimodules/uimenus.py')
-rw-r--r-- | examples/uimodules/uimenus.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/uimodules/uimenus.py b/examples/uimodules/uimenus.py index 6f98769..4e11157 100644 --- a/examples/uimodules/uimenus.py +++ b/examples/uimodules/uimenus.py @@ -1,6 +1,6 @@ import os -from qt import QLabel +from qt import TQLabel from tdecore import KApplication @@ -11,7 +11,7 @@ class PageLaunch: x = 10 y = 10 - launchLbl = QLabel ("Launching application ... please wait\n\nClose launched application to continue", self.page) + launchLbl = TQLabel ("Launching application ... please wait\n\nClose launched application to continue", self.page) launchLbl.setGeometry (x, y, 300, 80) launchLbl.show () @@ -27,7 +27,7 @@ class PageNotImpl: x = 10 y = 10 - niLbl = QLabel ("Nothing is currently implemented for this widget", self.page) + niLbl = TQLabel ("Nothing is currently implemented for this widget", self.page) niLbl.setGeometry (x, y, 300, 20) niLbl.show () |