summaryrefslogtreecommitdiffstats
path: root/cervisia/cvsservice/cvsaskpass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cervisia/cvsservice/cvsaskpass.cpp')
-rw-r--r--cervisia/cvsservice/cvsaskpass.cpp8
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);