From b1043889eb2d54f6f53f883f88b154d80663fbe0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 19 Jan 2013 18:46:25 -0600 Subject: [PATCH] Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4 --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 73c5b11..9c56f86 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -53,8 +53,8 @@ int main(int argc, char **argv) about.addCredit("Ain, Itai, Ivan, Jannick, Stephane, Patrice, Piotr, Stefano and Power On", I18N_NOOP("... for their translations")); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; Dolphin& mainWin = Dolphin::mainWin(); @@ -67,7 +67,7 @@ int main(int argc, char **argv) ++n; } } else { - KCmdLineArgs* args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs(); if (args->count() > 0) { mainWin.activeView()->setURL(args->url(0));