diff options
author | Timothy Pearson <[email protected]> | 2011-12-03 22:23:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-03 22:23:44 -0600 |
commit | 203ba231d0276943aae36111f9ec1e949f3c6a4c (patch) | |
tree | f039f7a5b5fc2da88a96876971bac580d87f6788 /examples/uimodules/uixml.py | |
parent | fd35f4a8382b7d223bc0325b9ca3f88515778aa0 (diff) | |
download | pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.tar.gz pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.zip |
Initial TQt conversion
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 8dbd4d3..8e8ca8c 100644 --- a/examples/uimodules/uixml.py +++ b/examples/uimodules/uixml.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 () |