summaryrefslogtreecommitdiffstats
path: root/twin/tools/decobenchmark
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:43 -0600
commitd41050ea3f6904e5156d35f664346b816b9e4d12 (patch)
tree7b3ff517432a631adc61a2a93080dc3bacfab604 /twin/tools/decobenchmark
parentc16d0f2191af1e4810391dbd1a06d7713fb38666 (diff)
downloadtdebase-d41050ea3f6904e5156d35f664346b816b9e4d12.tar.gz
tdebase-d41050ea3f6904e5156d35f664346b816b9e4d12.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'twin/tools/decobenchmark')
-rw-r--r--twin/tools/decobenchmark/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/twin/tools/decobenchmark/main.cpp b/twin/tools/decobenchmark/main.cpp
index d89f773d0..2537d9f6b 100644
--- a/twin/tools/decobenchmark/main.cpp
+++ b/twin/tools/decobenchmark/main.cpp
@@ -102,13 +102,13 @@ int main(int argc, char** argv)
TQString style = "keramik";
// KApplication app(argc, argv);
KAboutData about("decobenchmark", "DecoBenchmark", "0.1", "twin decoration performance tester...", KAboutData::License_LGPL, "(C) 2005 Sandro Giessl");
- KCmdLineArgs::init(argc, argv, &about);
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::addCmdLineOptions( options );
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if (args->count() != 3)
- KCmdLineArgs::usage("Wrong number of arguments!");
+ TDECmdLineArgs::usage("Wrong number of arguments!");
TQString library = TQString(args->arg(0) );
TQString t = TQString(args->arg(1) );
@@ -126,7 +126,7 @@ int main(int argc, char** argv)
else if (t == "recreation")
test = RecreationTest;
else
- KCmdLineArgs::usage("Specify a valid test!");
+ TDECmdLineArgs::usage("Specify a valid test!");
DecoBenchApplication app(library, test, count);