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/kxsconfig/kxsrun.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/kxsconfig/kxsrun.cpp')
-rw-r--r-- | kscreensaver/kxsconfig/kxsrun.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kscreensaver/kxsconfig/kxsrun.cpp b/kscreensaver/kxsconfig/kxsrun.cpp index b32dbfcc..fa1b9c3b 100644 --- a/kscreensaver/kxsconfig/kxsrun.cpp +++ b/kscreensaver/kxsconfig/kxsrun.cpp @@ -60,13 +60,13 @@ static const KCmdLineOptions options[] = int main(int argc, char *argv[]) { KLocale::setMainCatalogue("kxsconfig"); - KCmdLineArgs::init(argc, argv, appName, I18N_NOOP("KXSRun"), description, version); + TDECmdLineArgs::init(argc, argv, appName, I18N_NOOP("KXSRun"), description, version); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app( false, false ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if ( !args->count() ) exit( 1 ); |