summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:30 -0600
commit8472408c30e6ca7f25318e3a34f78a371cf43af8 (patch)
treefd13f99b89d2a4e53f40c4e98c9b118c5e196232
parent8f0e5b234d4107fb420cb3eb31712930da33f168 (diff)
downloadkpicosim-8472408c30e6ca7f25318e3a34f78a371cf43af8.tar.gz
kpicosim-8472408c30e6ca7f25318e3a34f78a371cf43af8.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rwxr-xr-xsrc/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 11c047a..2700e75 100755
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -41,8 +41,8 @@ int main(int argc, char **argv)
KAboutData about("kpicosim", I18N_NOOP("KPicoSim"), version, description,
KAboutData::License_GPL, "(C) %{YEAR} Mark Six", 0, 0, "m6@xs4all.nl");
about.addAuthor( "Mark Six", 0, "m6@xs4all.nl" );
- KCmdLineArgs::init(argc, argv, &about);
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
KPicoSim *mainWin = 0;
@@ -53,7 +53,7 @@ int main(int argc, char **argv)
else
{
// no session.. just start up normally
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
/// @todo do something with the command line args here