diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:49 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:49 -0600 |
commit | ca1ec6eeaaf5744fae891a5b0696591bbaece795 (patch) | |
tree | 33109d2b950090bb7f320d20a115364514a08957 /kfilereplace | |
parent | 3240c45eaa4a785f0d90d5e712f4c51e53378117 (diff) | |
download | tdewebdev-ca1ec6eeaaf5744fae891a5b0696591bbaece795.tar.gz tdewebdev-ca1ec6eeaaf5744fae891a5b0696591bbaece795.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kfilereplace')
-rw-r--r-- | kfilereplace/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kfilereplace/main.cpp b/kfilereplace/main.cpp index 027894f9..1f7bdef0 100644 --- a/kfilereplace/main.cpp +++ b/kfilereplace/main.cpp @@ -44,8 +44,8 @@ int main(int argc, char *argv[]) I18N_NOOP("Original author of the KFileReplace tool"), "dupoux@dupoux.com"); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); KFileReplace *kfr = new KFileReplace; kfr->show(); |