diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:31 -0600 |
commit | 299a14479b54081252d4a4fd795e82dea03d1993 (patch) | |
tree | 7883d369b298a25290d3edc23d9250a4086dd7db | |
parent | f9e1308675344e8ff28c22cfbe0e2aa751e9be2a (diff) | |
download | ksquirrel-299a14479b54081252d4a4fd795e82dea03d1993.tar.gz ksquirrel-299a14479b54081252d4a4fd795e82dea03d1993.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r-- | ksquirrel/ksquirrel-libs-configurator/main.cpp | 4 | ||||
-rw-r--r-- | ksquirrel/main.cpp | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ksquirrel/ksquirrel-libs-configurator/main.cpp b/ksquirrel/ksquirrel-libs-configurator/main.cpp index 67c5cdd..82e8ebf 100644 --- a/ksquirrel/ksquirrel-libs-configurator/main.cpp +++ b/ksquirrel/ksquirrel-libs-configurator/main.cpp @@ -43,8 +43,8 @@ int main(int argc, char *argv[]) "http://ksquirrel.sourceforge.net", "ksquirrel.iv@gmail.com"); - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; diff --git a/ksquirrel/main.cpp b/ksquirrel/main.cpp index 8a7007c..e2b3073 100644 --- a/ksquirrel/main.cpp +++ b/ksquirrel/main.cpp @@ -84,9 +84,9 @@ int main(int argc, char *argv[]) aboutData.addCredit(I18N_NOOP("GameDev forum at"), 0, 0, "http://gamedev.ru"); // parse command line - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); - KCmdLineArgs *sq_args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs *sq_args = TDECmdLineArgs::parsedArgs(); //create high level options high = new SQ_HLOptions; |