diff options
author | Timothy Pearson <[email protected]> | 2013-01-19 18:46:27 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-19 18:46:27 -0600 |
commit | 86b34a4e0e6a2442207b865b108c6873da358dd3 (patch) | |
tree | 59c527c596280257c625a6d527036df4e01106df | |
parent | 68bfba0b5320623cb950e007ce3bcb27f133d9b0 (diff) | |
download | kmplayer-86b34a4e0e6a2442207b865b108c6873da358dd3.tar.gz kmplayer-86b34a4e0e6a2442207b865b108c6873da358dd3.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 03874e3..71a3a62 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -49,8 +49,8 @@ extern "C" { VERSION, description, KAboutData::License_GPL, "(c) 2002-2005, Koos Vriezen", 0, 0, ""); aboutData.addAuthor( "Koos Vriezen",0, ""); - KCmdLineArgs::init (argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions (options); // Add our own options. + TDECmdLineArgs::init (argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions (options); // Add our own options. KMPlayer::StringPool::init(); @@ -63,7 +63,7 @@ extern "C" { kmplayer = new KMPlayerApp (); kmplayer->show(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); KURL url; if (args->count () == 1) |