From 4ff6dfc573c9413a887afd35ec2d6825e60067bc Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 19 Jan 2013 18:46:25 -0600 Subject: Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4 --- src/app/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/app/main.cpp') diff --git a/src/app/main.cpp b/src/app/main.cpp index 4401193..0200a0d 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -46,7 +46,7 @@ static KCmdLineOptions options[] = { static const char version[] = "1.4.2"; -void applyFilterArgs(KCmdLineArgs* args, FileViewController* controller) { +void applyFilterArgs(TDECmdLineArgs* args, FileViewController* controller) { TQString filterType = args->getOption("filter-type"); TQString filterName = args->getOption("filter-name"); TQString filterFrom = args->getOption("filter-from"); @@ -126,15 +126,15 @@ KDE_EXPORT int kdemain (int argc, char *argv[]) { aboutData.addCredit("Michael Spanier", I18N_NOOP("Patch for mouse navigation (v0.7.0)"), "mail@michael-spanier.de"); aboutData.addCredit("Christian A Strømmen", I18N_NOOP("Integration in Konqueror folder context menu"), "number1@realityx.net"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication kapplication; if (kapplication.isRestored()) { RESTORE(MainWindow) } else { - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); MainWindow *mainWindow = new MainWindow; applyFilterArgs(args, mainWindow->fileViewController()); -- cgit v1.2.1