summaryrefslogtreecommitdiffstats
path: root/kioslave/svn
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:47 -0600
commit479647c43c62fc50302342c8ac50a2fe024b4426 (patch)
tree946e0114bb29970388e3ae24418a9df7119eaef4 /kioslave/svn
parentce145c966787b367fc3372bb78e8a5aefc33a410 (diff)
downloadtdesdk-479647c43c62fc50302342c8ac50a2fe024b4426.tar.gz
tdesdk-479647c43c62fc50302342c8ac50a2fe024b4426.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/svn')
-rw-r--r--kioslave/svn/svnhelper/kio_svn_helper.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kioslave/svn/svnhelper/kio_svn_helper.cpp b/kioslave/svn/svnhelper/kio_svn_helper.cpp
index 84a3c176..8c6131bd 100644
--- a/kioslave/svn/svnhelper/kio_svn_helper.cpp
+++ b/kioslave/svn/svnhelper/kio_svn_helper.cpp
@@ -47,7 +47,7 @@
#include <tqtextcodec.h>
SvnHelper::SvnHelper():KApplication() {
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
KWinModule wm ( TQT_TQOBJECT(this) );
m_id = wm.activeWindow();
@@ -275,14 +275,14 @@ static KCmdLineOptions options[] = {
};
int main(int argc, char **argv) {
- KCmdLineArgs::init(argc, argv, "kio_svn_helper", I18N_NOOP("Subversion Helper"), "TDE frontend for SVN", "0.1");
+ TDECmdLineArgs::init(argc, argv, "kio_svn_helper", I18N_NOOP("Subversion Helper"), "TDE frontend for SVN", "0.1");
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::addCmdLineOptions( options );
KGlobal::locale()->setMainCatalogue("kio_svn");
KApplication::addCmdLineOptions();
- if ( KCmdLineArgs::parsedArgs()->count()==0 )
- KCmdLineArgs::usage();
+ if ( TDECmdLineArgs::parsedArgs()->count()==0 )
+ TDECmdLineArgs::usage();
KApplication *app = new SvnHelper();
// app->dcopClient()->attach();