diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:26 -0600 |
commit | 5a6cd8f08ce0415f0b76460689ef32a71cb0530f (patch) | |
tree | e428a979b4bea7e7c1963ab95493d468c198ea2c | |
parent | fce042725af158b231bcf1e4c0effa5174395db8 (diff) | |
download | k9copy-5a6cd8f08ce0415f0b76460689ef32a71cb0530f.tar.gz k9copy-5a6cd8f08ce0415f0b76460689ef32a71cb0530f.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rwxr-xr-x | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9312be7..2b200d5 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -69,8 +69,8 @@ int main(int argc, char **argv) { about.setTranslator(I18N_NOOP("_: NAME OF TRANSLATORS\\nYour names") ,I18N_NOOP("_: EMAIL OF TRANSLATORS\\nYour emails")); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; // kMainDlg *mainWin = 0; @@ -83,7 +83,7 @@ int main(int argc, char **argv) { tc_memcpy_init( 0, ac_mmflag()); // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); TQString TitleNumber(args->getOption("dvdtitle")); TQString InputOptionArg( args->getOption("input")); TQString OutputOptionArg( args->getOption("output")); |