diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:23:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:23:32 -0600 |
commit | 94c9dc38220d50d037075127ad46add8a264ef26 (patch) | |
tree | af6ba5d26197827dac1b1901895dee7a7b62a9d6 /kioslave | |
parent | 479647c43c62fc50302342c8ac50a2fe024b4426 (diff) | |
download | tdesdk-94c9dc38220d50d037075127ad46add8a264ef26.tar.gz tdesdk-94c9dc38220d50d037075127ad46add8a264ef26.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'kioslave')
-rw-r--r-- | kioslave/svn/svnhelper/kio_svn_helper.cpp | 6 | ||||
-rw-r--r-- | kioslave/svn/svnhelper/kio_svn_helper.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kioslave/svn/svnhelper/kio_svn_helper.cpp b/kioslave/svn/svnhelper/kio_svn_helper.cpp index 8c6131bd..64258fd9 100644 --- a/kioslave/svn/svnhelper/kio_svn_helper.cpp +++ b/kioslave/svn/svnhelper/kio_svn_helper.cpp @@ -46,7 +46,7 @@ #include <tqtextbrowser.h> #include <tqtextcodec.h> -SvnHelper::SvnHelper():KApplication() { +SvnHelper::SvnHelper():TDEApplication() { TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); KWinModule wm ( TQT_TQOBJECT(this) ); m_id = wm.activeWindow(); @@ -279,11 +279,11 @@ int main(int argc, char **argv) { TDECmdLineArgs::addCmdLineOptions( options ); KGlobal::locale()->setMainCatalogue("kio_svn"); - KApplication::addCmdLineOptions(); + TDEApplication::addCmdLineOptions(); if ( TDECmdLineArgs::parsedArgs()->count()==0 ) TDECmdLineArgs::usage(); - KApplication *app = new SvnHelper(); + TDEApplication *app = new SvnHelper(); // app->dcopClient()->attach(); app->exec(); diff --git a/kioslave/svn/svnhelper/kio_svn_helper.h b/kioslave/svn/svnhelper/kio_svn_helper.h index 2ea64996..4ee9239b 100644 --- a/kioslave/svn/svnhelper/kio_svn_helper.h +++ b/kioslave/svn/svnhelper/kio_svn_helper.h @@ -25,7 +25,7 @@ #include <twinmodule.h> #include <tqstringlist.h> -class SvnHelper:public KApplication { +class SvnHelper:public TDEApplication { Q_OBJECT |