diff options
author | Timothy Pearson <[email protected]> | 2013-01-19 18:46:33 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-19 18:46:33 -0600 |
commit | 8bb920b7600fff2edead978c5d7f39d915a54176 (patch) | |
tree | 6b8e364f5d3d14e2b0dca492e5a54eee7c32a924 | |
parent | c9354cef0e96a227eb22a2a55b05f6fed1485b69 (diff) | |
download | tde-systemsettings-8bb920b7600fff2edead978c5d7f39d915a54176.tar.gz tde-systemsettings-8bb920b7600fff2edead978c5d7f39d915a54176.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r-- | systemsettings/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/systemsettings/main.cpp b/systemsettings/main.cpp index 0b8e010..6be69b3 100644 --- a/systemsettings/main.cpp +++ b/systemsettings/main.cpp @@ -43,12 +43,12 @@ int main( int argc, char *argv[] ) KAboutData::License_LGPL, "(c) 2005, Benjamin C. Meyer", 0, 0); aboutData.addAuthor("Benjamin C. Meyer", I18N_NOOP("Author & Maintainer"), - KCmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::init(argc, argv, &aboutData); // Tell which options are supported - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::addCmdLineOptions( options ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); // Launch KApplication application(argc, argv); |