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 /parts/documentation | |
parent | 57c30b2881457b03f7ca0a20b14178e5c3baad63 (diff) | |
download | tdevelop-bdeb717137b6fc8693198008ccb97f8213973416.tar.gz tdevelop-bdeb717137b6fc8693198008ccb97f8213973416.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'parts/documentation')
-rw-r--r-- | parts/documentation/tools/htdig/htdigindex.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/documentation/tools/htdig/htdigindex.cpp b/parts/documentation/tools/htdig/htdigindex.cpp index 908ac4e0..07ded01c 100644 --- a/parts/documentation/tools/htdig/htdigindex.cpp +++ b/parts/documentation/tools/htdig/htdigindex.cpp @@ -453,14 +453,14 @@ int main(int argc, char *argv[]) KAboutData aboutData("tdevelop-htdig", I18N_NOOP("TDevelop ht://Dig Indexer"), "0.2", I18N_NOOP("TDE Index generator for documentation files.")); - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; KGlobal::locale()->setMainCatalogue("tdevelop"); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->isSet("c")) { |