From 8c3110de4756b688277bd050a58e58bd03491aea Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 19 Jan 2013 18:46:32 -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 78e7356..83b42aa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -113,11 +113,11 @@ int main ( int argc, char *argv[] ) aboutData.addCredit ( "Christiansen" , I18N_NOOP ( "Danish translation" ), "susebruger@mailme.dk" ); // Initialize command line args - KCmdLineArgs::init ( argc, argv, &aboutData); + TDECmdLineArgs::init ( argc, argv, &aboutData); // Add options from other components KApplication::addCmdLineOptions(); - KCmdLineArgs::addCmdLineOptions ( options ); + TDECmdLineArgs::addCmdLineOptions ( options ); KApplication a; KVpnc *kvpnc = new KVpnc ( &a ); @@ -140,7 +140,7 @@ int main ( int argc, char *argv[] ) // exit(0); // } - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); a.setMainWidget ( kvpnc );