summaryrefslogtreecommitdiffstats
path: root/examples/example_dcopext.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example_dcopext.py')
-rw-r--r--examples/example_dcopext.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/example_dcopext.py b/examples/example_dcopext.py
index d019780..96df963 100644
--- a/examples/example_dcopext.py
+++ b/examples/example_dcopext.py
@@ -28,15 +28,15 @@ copyright holder.
"""
import sys, time
-from PyTQt.qt import TQString, TQCString
+from PyTQt.tqt import TQString, TQCString
import dcop
import dcopext
from tdecore import TDEApplication, TDECmdLineArgs, TDEAboutData
def getAnyApplication (client, appName):
- for qcstring_app in client.registeredApplications ():
- app = str (qcstring_app)
+ for tqcstring_app in client.registeredApplications ():
+ app = str (tqcstring_app)
if app == appName or app.startswith (appName + "-"):
print(app)
print()