diff options
author | Timothy Pearson <[email protected]> | 2013-01-19 18:46:32 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-19 18:46:32 -0600 |
commit | 8c3110de4756b688277bd050a58e58bd03491aea (patch) | |
tree | cf6b5510b93a4cd34687e2d15d4028d45339ef2a /src/main.cpp | |
parent | 9ad1e3ff3ec22e95f887d8dba08a43e825bad161 (diff) | |
download | kvpnc-8c3110de4756b688277bd050a58e58bd03491aea.tar.gz kvpnc-8c3110de4756b688277bd050a58e58bd03491aea.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
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" ), "[email protected]" ); // 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 ); |