summaryrefslogtreecommitdiffstats
path: root/ksirtet
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:44 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:44 -0600
commit4ffd16a310c74db19a5ba0c297234470f01cd7b3 (patch)
tree46f830ac3b70b614ab623571394f0dc49a5dd83b /ksirtet
parentaa1c1b863d595a4cbd3b1b83b23d5334ca37bc14 (diff)
downloadtdegames-4ffd16a310c74db19a5ba0c297234470f01cd7b3.tar.gz
tdegames-4ffd16a310c74db19a5ba0c297234470f01cd7b3.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'ksirtet')
-rw-r--r--ksirtet/ksirtet/check_score.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksirtet/ksirtet/check_score.cpp b/ksirtet/ksirtet/check_score.cpp
index e81008b9..6795e7ca 100644
--- a/ksirtet/ksirtet/check_score.cpp
+++ b/ksirtet/ksirtet/check_score.cpp
@@ -6,12 +6,12 @@
int main(int argc, char **argv)
{
// read argument
- KCmdLineArgs::init(argc, argv, "check_score", 0, 0, true);
+ TDECmdLineArgs::init(argc, argv, "check_score", 0, 0, true);
static KCmdLineOptions options[] =
{ {"+file", "Count of removed lines", 0} };
- KCmdLineArgs::addCmdLineOptions(options);
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
- if ( args->count()==0 ) KCmdLineArgs::usage();
+ TDECmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
+ if ( args->count()==0 ) TDECmdLineArgs::usage();
TQString s = args->arg(0);
bool ok;
uint nb = s.toUInt(&ok);