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/kofficepart | |
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/kofficepart')
-rw-r--r-- | languages/cpp/app_templates/kofficepart/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/app_templates/kofficepart/main.cpp b/languages/cpp/app_templates/kofficepart/main.cpp index 1561922a..01fa0c3d 100644 --- a/languages/cpp/app_templates/kofficepart/main.cpp +++ b/languages/cpp/app_templates/kofficepart/main.cpp @@ -20,8 +20,8 @@ static const KCmdLineOptions options[]= int main( int argc, char **argv ) { - KCmdLineArgs::init( argc, argv, new%{APPNAME}AboutData() ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, new%{APPNAME}AboutData() ); + TDECmdLineArgs::addCmdLineOptions( options ); KoApplication app; app.dcopClient()->attach(); |