From 203ba231d0276943aae36111f9ec1e949f3c6a4c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 3 Dec 2011 22:23:44 -0600 Subject: Initial TQt conversion --- examples/uimodules/uimenus.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/uimodules/uimenus.py') 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 () -- cgit v1.2.1