diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:47 -0600 |
commit | 479647c43c62fc50302342c8ac50a2fe024b4426 (patch) | |
tree | 946e0114bb29970388e3ae24418a9df7119eaef4 /kapptemplate/kapp/main.cpp | |
parent | ce145c966787b367fc3372bb78e8a5aefc33a410 (diff) | |
download | tdesdk-479647c43c62fc50302342c8ac50a2fe024b4426.tar.gz tdesdk-479647c43c62fc50302342c8ac50a2fe024b4426.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kapptemplate/kapp/main.cpp')
-rw-r--r-- | kapptemplate/kapp/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kapptemplate/kapp/main.cpp b/kapptemplate/kapp/main.cpp index 016b7442..69668df8 100644 --- a/kapptemplate/kapp/main.cpp +++ b/kapptemplate/kapp/main.cpp @@ -22,8 +22,8 @@ int main(int argc, char **argv) { KAboutData about("${APP_NAME_LC}", I18N_NOOP("${APP_NAME}"), version, description, KAboutData::License_GPL, "(C) 2004 ${AUTHOR}", 0, 0, "${EMAIL}"); about.addAuthor( "${AUTHOR}", 0, "${EMAIL}" ); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; // register ourselves as a dcop client @@ -35,7 +35,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count() == 0) { ${APP_NAME} *widget = new ${APP_NAME}; |