diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:28:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:28:24 -0600 |
commit | 20de04ce44f63fb911103d7870d39d2782d14cda (patch) | |
tree | bddd13cef2fae98892caf538dc64b5357732c517 /konq-plugins/arkplugin | |
parent | 4c097708c4cc24f3b8e4c21f14644f5715767d47 (diff) | |
download | tdeaddons-20de04ce44f63fb911103d7870d39d2782d14cda.tar.gz tdeaddons-20de04ce44f63fb911103d7870d39d2782d14cda.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'konq-plugins/arkplugin')
-rw-r--r-- | konq-plugins/arkplugin/arkplugin.cpp | 6 | ||||
-rw-r--r-- | konq-plugins/arkplugin/arkplugin.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/konq-plugins/arkplugin/arkplugin.cpp b/konq-plugins/arkplugin/arkplugin.cpp index fef5779..acd10f6 100644 --- a/konq-plugins/arkplugin/arkplugin.cpp +++ b/konq-plugins/arkplugin/arkplugin.cpp @@ -49,7 +49,7 @@ ArkMenu::ArkMenu( KonqPopupMenu * popupmenu, const char *name, const TQStringLis || ( KStandardDirs::findExe( "ark" ).isNull() ) ) return; - m_conf = new KConfig( "arkrc" ); + m_conf = new TDEConfig( "arkrc" ); m_conf->setGroup( "ark" ); if ( !m_conf->readBoolEntry( "KonquerorIntegration", true ) ) @@ -471,7 +471,7 @@ void ArkMenu::slotCompressAs( int pos ) { target = m_dir + i18n("Archive") + m_extensionList[ pos ]; int i=1; - while ( KIO::NetAccess::exists(target, true, 0 ) ) + while ( TDEIO::NetAccess::exists(target, true, 0 ) ) { target = m_dir + i18n("Archive %1").arg(i) + m_extensionList[ pos ]; i++; @@ -515,7 +515,7 @@ void ArkMenu::slotCompressAsDefault() { name = m_dir + i18n("Archive") + m_ext; int i=1; - while ( KIO::NetAccess::exists(name, true, 0 ) ) + while ( TDEIO::NetAccess::exists(name, true, 0 ) ) { name = m_dir + i18n("Archive %1").arg(i) + m_ext; i++; diff --git a/konq-plugins/arkplugin/arkplugin.h b/konq-plugins/arkplugin/arkplugin.h index 326d298..a1290fa 100644 --- a/konq-plugins/arkplugin/arkplugin.h +++ b/konq-plugins/arkplugin/arkplugin.h @@ -65,7 +65,7 @@ private: KActionMenu * m_addToMenu; TQSignalMapper * m_compAsMapper; TQSignalMapper * m_addToMapper; - KConfig * m_conf; + TDEConfig * m_conf; TQString m_dir; //contains the currect directory }; |