diff options
author | Timothy Pearson <[email protected]> | 2013-01-19 18:46:42 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-19 18:46:42 -0600 |
commit | de2e00ccad5e4f0ef40e88290954c8ccb7d518a5 (patch) | |
tree | ee1c5b249fc9f417b0637cd742374196a8fe5ac0 /kscreensaver/xsavers/main.cpp | |
parent | 869edbbd8e9b3242a9d9a2eb698568be39d53a9a (diff) | |
download | tdeartwork-de2e00ccad5e4f0ef40e88290954c8ccb7d518a5.tar.gz tdeartwork-de2e00ccad5e4f0ef40e88290954c8ccb7d518a5.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kscreensaver/xsavers/main.cpp')
-rw-r--r-- | kscreensaver/xsavers/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kscreensaver/xsavers/main.cpp b/kscreensaver/xsavers/main.cpp index 14f0c952..ec9c361d 100644 --- a/kscreensaver/xsavers/main.cpp +++ b/kscreensaver/xsavers/main.cpp @@ -49,9 +49,9 @@ static void crashHandler( int /*sig*/ ) int main(int argc, char *argv[]) { - KCmdLineArgs::init(argc, argv, appName, I18N_NOOP("KLock"), description, version); + TDECmdLineArgs::init(argc, argv, appName, I18N_NOOP("KLock"), description, version); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; @@ -60,7 +60,7 @@ int main(int argc, char *argv[]) DemoWindow *demoWidget = 0; Window saveWin = 0; - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("setup")) { |