summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:32 -0600
commit8c3110de4756b688277bd050a58e58bd03491aea (patch)
treecf6b5510b93a4cd34687e2d15d4028d45339ef2a /src
parent9ad1e3ff3ec22e95f887d8dba08a43e825bad161 (diff)
downloadkvpnc-8c3110de4756b688277bd050a58e58bd03491aea.tar.gz
kvpnc-8c3110de4756b688277bd050a58e58bd03491aea.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp6
1 files 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 );