diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:49 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:49 -0600 |
commit | bdeb717137b6fc8693198008ccb97f8213973416 (patch) | |
tree | aa91b6811b0632aeea6ac8402022cd6e1ff122fb /languages/cpp/app_templates/kxt | |
parent | 57c30b2881457b03f7ca0a20b14178e5c3baad63 (diff) | |
download | tdevelop-bdeb717137b6fc8693198008ccb97f8213973416.tar.gz tdevelop-bdeb717137b6fc8693198008ccb97f8213973416.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'languages/cpp/app_templates/kxt')
-rw-r--r-- | languages/cpp/app_templates/kxt/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/app_templates/kxt/main.cpp b/languages/cpp/app_templates/kxt/main.cpp index 64ef71e3..ac88952e 100644 --- a/languages/cpp/app_templates/kxt/main.cpp +++ b/languages/cpp/app_templates/kxt/main.cpp @@ -22,8 +22,8 @@ int main(int argc, char **argv) KAboutData about("%{APPNAMELC}", I18N_NOOP("%{APPNAME}"), version, description, KAboutData::License_%{LICENSE}, "(C) %{YEAR} %{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; // see if we are starting with session management @@ -34,7 +34,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) { %{APPNAMELC} *widget = new %{APPNAMELC}; |