summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:31 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:31 -0600
commit227d1ebc07e3926eeb6fca2f48c2567c836c5010 (patch)
tree0594ea73ccf9c8b4dfc86b816ad084dc5e7c9287 /src
parent4fa01d863b32d7fe0d4df133b3e4c73c65c28746 (diff)
downloadktechlab-227d1ebc07e3926eeb6fca2f48c2567c836c5010.tar.gz
ktechlab-227d1ebc07e3926eeb6fca2f48c2567c836c5010.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/core/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp
index e8431ce..5c46d52 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -39,8 +39,8 @@ int main(int argc, char **argv)
about.addCredit( "John Myers", "Rotary Switch" );
about.addCredit( "Ali Akcaagac", "Glib friendliness." );
about.addCredit( "David Leggett", "Website hosting and feedback during early development." );
- KCmdLineArgs::init(argc, argv, &about);
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::addCmdLineOptions(options);
KApplication app;
// register ourselves as a dcop client
@@ -48,7 +48,7 @@ int main(int argc, char **argv)
KTechlab *ktechlab = new KTechlab();
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
for ( int i=0; i < args->count(); ++i )
ktechlab->load( args->url(i) );