From d088a3cec7282afe34b731d1abf44fada42d9cad 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index 17e6989..11107cd 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -34,8 +34,8 @@ int main( int argc, char *argv[] ) about.addCredit( "Stephanie James", I18N_NOOP("Testing") ); about.addCredit( "Marcus Camen", I18N_NOOP("Bravery in the face of unreadable code") ); - KCmdLineArgs::init( argc, argv, &about ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &about ); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; @@ -43,7 +43,7 @@ int main( int argc, char *argv[] ) MainWindow *mw = new MainWindow(); app.setMainWidget( mw ); - KCmdLineArgs* const args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs* const args = TDECmdLineArgs::parsedArgs(); if (args->count() > 0 ) mw->scan( args->url( 0 )); args->clear(); -- cgit v1.2.1