summaryrefslogtreecommitdiffstats
path: root/src/askpass
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:33 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:33 -0600
commit201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3 (patch)
tree83466931bbe6cb61325959b035c45c4c15e3e463 /src/askpass
parent7f5f522e98edd9b4c0f38b516898e9de82814e8a (diff)
downloadtdesvn-201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3.tar.gz
tdesvn-201e831d6d5b086b43d9f9dba0a0ae8c74e4f2a3.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src/askpass')
-rw-r--r--src/askpass/tdesvn-askpass.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/askpass/tdesvn-askpass.cpp b/src/askpass/tdesvn-askpass.cpp
index 581ecf6..d717d9e 100644
--- a/src/askpass/tdesvn-askpass.cpp
+++ b/src/askpass/tdesvn-askpass.cpp
@@ -37,8 +37,8 @@ int main(int argc, char** argv)
I18N_NOOP("ssh-askpass for tdesvn"),
KAboutData::License_LGPL,
I18N_NOOP("Copyright (c) 2005 Rajko Albrecht"));
- 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();
@@ -47,10 +47,10 @@ int main(int argc, char** argv)
app.disableSessionManagement();
TQString prompt;
- if( !KCmdLineArgs::parsedArgs()->count() ) {
+ if( !TDECmdLineArgs::parsedArgs()->count() ) {
prompt = i18n("Please enter your password below.");
} else {
- prompt = KCmdLineArgs::parsedArgs()->arg(0);
+ prompt = TDECmdLineArgs::parsedArgs()->arg(0);
}
TQCString pw;
KPasswordDialog::disableCoreDumps();