summaryrefslogtreecommitdiffstats
path: root/kaboodle
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:45 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:45 -0600
commit58646ccdcdc8ee08b081edba54e1460ff3295166 (patch)
treef9234aed98aaaa0f7d88e7234505d34f0a8147a4 /kaboodle
parentf22c05e92636f81736560df2b4bfa0953fbc82b2 (diff)
downloadtdemultimedia-58646ccdcdc8ee08b081edba54e1460ff3295166.tar.gz
tdemultimedia-58646ccdcdc8ee08b081edba54e1460ff3295166.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kaboodle')
-rw-r--r--kaboodle/kaboodleapp.cpp2
-rw-r--r--kaboodle/main.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/kaboodle/kaboodleapp.cpp b/kaboodle/kaboodleapp.cpp
index 22de968a..e2872e6b 100644
--- a/kaboodle/kaboodleapp.cpp
+++ b/kaboodle/kaboodleapp.cpp
@@ -32,7 +32,7 @@ Kaboodle::KaboodleApp::KaboodleApp()
{
disableSessionManagement();
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
KURL openURL;
if(args->count() > 0)
{
diff --git a/kaboodle/main.cpp b/kaboodle/main.cpp
index b3f4f84e..3353005c 100644
--- a/kaboodle/main.cpp
+++ b/kaboodle/main.cpp
@@ -44,11 +44,11 @@ static KCmdLineOptions options[] =
int main(int argc, char **argv)
{
- KCmdLineArgs::init(argc, argv, Kaboodle::KaboodleFactory::aboutData());
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init(argc, argv, Kaboodle::KaboodleFactory::aboutData());
+ TDECmdLineArgs::addCmdLineOptions(options);
#ifndef NDEBUG
- if(!KCmdLineArgs::parsedArgs()->isSet("qdebug"))
+ if(!TDECmdLineArgs::parsedArgs()->isSet("qdebug"))
tqInstallMsgHandler(noMessageOutput);
#endif