summaryrefslogtreecommitdiffstats
path: root/kioslave
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 /kioslave
parentf22c05e92636f81736560df2b4bfa0953fbc82b2 (diff)
downloadtdemultimedia-58646ccdcdc8ee08b081edba54e1460ff3295166.tar.gz
tdemultimedia-58646ccdcdc8ee08b081edba54e1460ff3295166.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kioslave')
-rw-r--r--kioslave/audiocd/audiocd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/audiocd/audiocd.cpp b/kioslave/audiocd/audiocd.cpp
index bd65d49d..ba1b8ada 100644
--- a/kioslave/audiocd/audiocd.cpp
+++ b/kioslave/audiocd/audiocd.cpp
@@ -80,13 +80,13 @@ int kdemain(int argc, char ** argv)
// with the user
putenv(strdup("SESSION_MANAGER="));
KApplication::disableAutoDcopRegistration();
- KCmdLineArgs::init(argc, argv, "kio_audiocd", 0, 0, 0, 0);
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init(argc, argv, "kio_audiocd", 0, 0, 0, 0);
+ TDECmdLineArgs::addCmdLineOptions(options);
KApplication app(false, true);
kdDebug(7117) << "Starting " << getpid() << endl;
- KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
AudioCDProtocol slave(args->arg(0), args->arg(1), args->arg(2));
slave.dispatchLoop();