diff options
Diffstat (limited to 'examples/example_dcopext.py')
| -rw-r--r-- | examples/example_dcopext.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/examples/example_dcopext.py b/examples/example_dcopext.py index 05a906d..e206a21 100644 --- a/examples/example_dcopext.py +++ b/examples/example_dcopext.py @@ -30,7 +30,7 @@ copyright holder.  import sys, time  import dcop  import dcopext -from tdecore import TDEApplication, KCmdLineArgs, KAboutData +from tdecore import TDEApplication, TDECmdLineArgs, KAboutData  from qt import TQString, TQCString @@ -61,9 +61,9 @@ aboutData   = KAboutData ("testdcopext", "testdcopext",\  aboutData.addAuthor ("author1", "whatever they did", "email@somedomain")  aboutData.addAuthor ("author2", "they did something else", "another@email.address") -KCmdLineArgs.init (sys.argv, aboutData) +TDECmdLineArgs.init (sys.argv, aboutData) -KCmdLineArgs.addCmdLineOptions ([("+files", "File to open")]) +TDECmdLineArgs.addCmdLineOptions ([("+files", "File to open")])  app  = TDEApplication ()  dcop = app.dcopClient () | 
