summaryrefslogtreecommitdiffstats
path: root/buildtools
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:49 -0600
commitbdeb717137b6fc8693198008ccb97f8213973416 (patch)
treeaa91b6811b0632aeea6ac8402022cd6e1ff122fb /buildtools
parent57c30b2881457b03f7ca0a20b14178e5c3baad63 (diff)
downloadtdevelop-bdeb717137b6fc8693198008ccb97f8213973416.tar.gz
tdevelop-bdeb717137b6fc8693198008ccb97f8213973416.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/lib/parsers/qmake/tests/runner.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/lib/parsers/qmake/tests/runner.cpp b/buildtools/lib/parsers/qmake/tests/runner.cpp
index 378ebbed..489dd754 100644
--- a/buildtools/lib/parsers/qmake/tests/runner.cpp
+++ b/buildtools/lib/parsers/qmake/tests/runner.cpp
@@ -133,14 +133,14 @@ private:
};
int main(int argc, char *argv[])
{
- KCmdLineArgs::init( argc, argv, "TQMake Parser", "qmake-parser", "Parse TQMake project files", "1.0.0");
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init( argc, argv, "TQMake Parser", "qmake-parser", "Parse TQMake project files", "1.0.0");
+ TDECmdLineArgs::addCmdLineOptions(options);
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if( args->count() < 1 )
{
- KCmdLineArgs::usage(0);
+ TDECmdLineArgs::usage(0);
}
int debug = 0;