diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:43 -0600 |
commit | 8a69eba2f0eddce05cf86e0df8aec6e9f473d485 (patch) | |
tree | a889ac177bfba440878975db41e0a240daee8075 /dcoppython/test | |
parent | 1dbcf2f985c1f3d9319f4c46a0da9951551f82c9 (diff) | |
download | tdebindings-8a69eba2f0eddce05cf86e0df8aec6e9f473d485.tar.gz tdebindings-8a69eba2f0eddce05cf86e0df8aec6e9f473d485.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'dcoppython/test')
-rw-r--r-- | dcoppython/test/dcopserver/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dcoppython/test/dcopserver/main.cpp b/dcoppython/test/dcopserver/main.cpp index dea6a30e..3a40016e 100644 --- a/dcoppython/test/dcopserver/main.cpp +++ b/dcoppython/test/dcopserver/main.cpp @@ -24,8 +24,8 @@ int main(int argc, char **argv) KAboutData about("kdedcoptest", I18N_NOOP("TDEDcopTest"), version, description, KAboutData::License_GPL, "(C) 2003 Julian Rockey", 0, 0, "kde@jrockey.com"); about.addAuthor( "Julian Rockey", 0, "kde@jrockey.com" ); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; KDEDcopTest *mainWin = 0; @@ -36,7 +36,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); // TODO: do something with the command line args here |