diff options
Diffstat (limited to 'kioslave/svn/svnhelper/kio_svn_helper.cpp')
-rw-r--r-- | kioslave/svn/svnhelper/kio_svn_helper.cpp | 10 |
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(); |