diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
commit | 4b5c71fdded4cfec525273c795bfb0b79bb8a5dd (patch) | |
tree | 874118de3376d565ba5013455e26b1e25acd6264 /konq-plugins | |
parent | 8b093db9895293ccce1f7d5c851c59912f48f975 (diff) | |
download | tdeaddons-4b5c71fdded4cfec525273c795bfb0b79bb8a5dd.tar.gz tdeaddons-4b5c71fdded4cfec525273c795bfb0b79bb8a5dd.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'konq-plugins')
-rw-r--r-- | konq-plugins/fsview/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/konq-plugins/fsview/main.cpp b/konq-plugins/fsview/main.cpp index 5a93886..151fe83 100644 --- a/konq-plugins/fsview/main.cpp +++ b/konq-plugins/fsview/main.cpp @@ -27,14 +27,14 @@ int main(int argc, char* argv[]) I18N_NOOP("Filesystem Viewer"), KAboutData::License_GPL, I18N_NOOP("(c) 2002, Josef Weidendorfer")); - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::addCmdLineOptions(options); KApplication a; KConfigGroup gconfig(KGlobal::config(), TQCString("General")); TQString path = gconfig.readPathEntry("Path", "."); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count()>0) path = args->arg(0); // TreeMap Widget as toplevel window |