summaryrefslogtreecommitdiffstats
path: root/kfile-plugins
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:41 -0600
commit4b5c71fdded4cfec525273c795bfb0b79bb8a5dd (patch)
tree874118de3376d565ba5013455e26b1e25acd6264 /kfile-plugins
parent8b093db9895293ccce1f7d5c851c59912f48f975 (diff)
downloadtdeaddons-4b5c71fdded4cfec525273c795bfb0b79bb8a5dd.tar.gz
tdeaddons-4b5c71fdded4cfec525273c795bfb0b79bb8a5dd.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kfile-plugins')
-rw-r--r--kfile-plugins/lnk/lnkforward.cpp8
-rw-r--r--kfile-plugins/lnk/lnkforward.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/kfile-plugins/lnk/lnkforward.cpp b/kfile-plugins/lnk/lnkforward.cpp
index e315e71..46fb781 100644
--- a/kfile-plugins/lnk/lnkforward.cpp
+++ b/kfile-plugins/lnk/lnkforward.cpp
@@ -52,18 +52,18 @@ static const KCmdLineOptions options[] =
int main(int argc, char **argv)
{
- KCmdLineArgs::init(argc, argv, appName, programName, description, version, false);
+ TDECmdLineArgs::init(argc, argv, appName, programName, description, version, false);
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::addCmdLineOptions(options);
LNKForwarder app;
- return app.run(KCmdLineArgs::parsedArgs());
+ return app.run(TDECmdLineArgs::parsedArgs());
}
//--------------------------------------------------------------------------------
-int LNKForwarder::run(KCmdLineArgs *args)
+int LNKForwarder::run(TDECmdLineArgs *args)
{
if ( args->count() == 0 ) return 1;
diff --git a/kfile-plugins/lnk/lnkforward.h b/kfile-plugins/lnk/lnkforward.h
index f65c8b3..c256e35 100644
--- a/kfile-plugins/lnk/lnkforward.h
+++ b/kfile-plugins/lnk/lnkforward.h
@@ -34,7 +34,7 @@ class LNKForwarder : public KApplication
public:
- int run(KCmdLineArgs *args);
+ int run(TDECmdLineArgs *args);
protected slots:
void delayedQuit();