diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-01-08 11:55:55 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-01-23 00:52:28 +0100 |
commit | cddd660ca43dbe5d4ce0f7ed6bacee48ea46da93 (patch) | |
tree | 277dba53239d6367cf2946458757600caf6e82a5 /examples/example_dcopexport.py | |
parent | 79ced6fbbdda1158aef437760ee0455fb9a9016d (diff) | |
download | pytde-cddd660ca43dbe5d4ce0f7ed6bacee48ea46da93.tar.gz pytde-cddd660ca43dbe5d4ce0f7ed6bacee48ea46da93.zip |
Update after renaming qt => tqt in PyTQt module.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'examples/example_dcopexport.py')
-rw-r--r-- | examples/example_dcopexport.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/example_dcopexport.py b/examples/example_dcopexport.py index d9436fc..faec09a 100644 --- a/examples/example_dcopexport.py +++ b/examples/example_dcopexport.py @@ -34,7 +34,7 @@ copyright holder. # which was written by Torben Weis and Julian Rockey import sys -from PyTQt.qt import TQString, TQStringList +from PyTQt.tqt import TQString, TQStringList from tdecore import TDEApplication, TDECmdLineArgs, TDEAboutData from dcopexport import DCOPExObj @@ -94,11 +94,11 @@ class DeadParrotObject (DCOPExObj): "a stiff", "bereft of life", "rests in peace", "metabolic processes are now history", "off the twig", "kicked the bucket", "shuffled off his mortal coil", "run down his curtain", "joined the bleedin' choir invisible", "THIS IS AN EX-PARROT"] - qadjList = TQStringList () + tqadjList = TQStringList () for adj in adjList: - qadjList.append (adj) + tqadjList.append (adj) - return qadjList + return tqadjList description = b"DCOP server template" |