diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:47 -0600 |
commit | 479647c43c62fc50302342c8ac50a2fe024b4426 (patch) | |
tree | 946e0114bb29970388e3ae24418a9df7119eaef4 /cervisia/cvsservice/cvsaskpass.cpp | |
parent | ce145c966787b367fc3372bb78e8a5aefc33a410 (diff) | |
download | tdesdk-479647c43c62fc50302342c8ac50a2fe024b4426.tar.gz tdesdk-479647c43c62fc50302342c8ac50a2fe024b4426.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'cervisia/cvsservice/cvsaskpass.cpp')
-rw-r--r-- | cervisia/cvsservice/cvsaskpass.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cervisia/cvsservice/cvsaskpass.cpp b/cervisia/cvsservice/cvsaskpass.cpp index 13660c7e..eb581f34 100644 --- a/cervisia/cvsservice/cvsaskpass.cpp +++ b/cervisia/cvsservice/cvsaskpass.cpp @@ -42,8 +42,8 @@ extern "C" KDE_EXPORT int kdemain(int argc, char** argv) KAboutData::License_LGPL, I18N_NOOP("Copyright (c) 2003 Christian Loose")); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions(options); // no need to register with the dcop server KApplication::disableAutoDcopRegistration(); @@ -52,11 +52,11 @@ extern "C" KDE_EXPORT int kdemain(int argc, char** argv) // no need for session management app.disableSessionManagement(); - if( !KCmdLineArgs::parsedArgs()->count() ) + if( !TDECmdLineArgs::parsedArgs()->count() ) return 1; // parse repository name from the passed argument - TQString prompt = KCmdLineArgs::parsedArgs()->arg(0); + TQString prompt = TDECmdLineArgs::parsedArgs()->arg(0); TQRegExp rx("(.*@.*)'s password:"); int pos = rx.search(prompt); |