summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:31 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:31 -0600
commited07550f747073e79b318ac7fa7e0daea55f88dc (patch)
tree9e1fc0986e7b3835c1055a0e05ec3f5ee7e339d9
parent45087d4fd3c860e92c24397456c3913d2cfbd549 (diff)
downloadksystemlog-ed07550f.tar.gz
ksystemlog-ed07550f.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r--ksystemlog/src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksystemlog/src/main.cpp b/ksystemlog/src/main.cpp
index a89e219..d01edea 100644
--- a/ksystemlog/src/main.cpp
+++ b/ksystemlog/src/main.cpp
@@ -54,8 +54,8 @@ int main(int argc, char **argv) {
about.addCredit("Patrick Decker", I18N_NOOP("Ideas, Code improvements" ), "patrick@decker.org" );
//about.addCredit(I18N_NOOP("French trains between Paris and Rouen"), I18N_NOOP("Often late, so I have time to improve KSystemLog ;-)" ), "info@sncf.fr" );
- KCmdLineArgs::init(argc, argv, &about);
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::addCmdLineOptions(options);
KApplication app;
//Register ourselves as a DCOP client
@@ -67,7 +67,7 @@ int main(int argc, char **argv) {
}
else {
//No session... Just start up normally
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if (args->count() == 0) {
KSystemLog *widget = new KSystemLog();
widget->show();