summaryrefslogtreecommitdiffstats
path: root/libtdepim/kcmdesignerfields.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:21 -0600
commit86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch)
tree97d3ac2c2f60780d9a1de4f82caac7cb27534501 /libtdepim/kcmdesignerfields.cpp
parenta9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff)
downloadtdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz
tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'libtdepim/kcmdesignerfields.cpp')
-rw-r--r--libtdepim/kcmdesignerfields.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtdepim/kcmdesignerfields.cpp b/libtdepim/kcmdesignerfields.cpp
index a96a88e7..bb870b11 100644
--- a/libtdepim/kcmdesignerfields.cpp
+++ b/libtdepim/kcmdesignerfields.cpp
@@ -127,7 +127,7 @@ class PageItem : public TQCheckListItem
};
KCMDesignerFields::KCMDesignerFields( TQWidget *parent, const char *name )
- : KCModule( parent, name )
+ : TDECModule( parent, name )
{
TQTimer::singleShot( 0, this, TQT_SLOT( delayedInit() ) );
@@ -178,7 +178,7 @@ void KCMDesignerFields::deleteFile()
if (KMessageBox::warningContinueCancel(this,
i18n( "<qt>Do you really want to delete '<b>%1</b>'?</qt>").arg( pageItem->text(0) ), "", KStdGuiItem::del() )
== KMessageBox::Continue)
- KIO::NetAccess::del( pageItem->path(), 0 );
+ TDEIO::NetAccess::del( pageItem->path(), 0 );
}
// The actual view refresh will be done automagically by the slots connected to kdirwatch
}
@@ -189,7 +189,7 @@ void KCMDesignerFields::importFile()
this, i18n("Import Page") );
KURL dest = localUiDir();
dest.setFileName(src.fileName());
- KIO::NetAccess::file_copy( src, dest, -1, true, false, this );
+ TDEIO::NetAccess::file_copy( src, dest, -1, true, false, this );
// The actual view refresh will be done automagically by the slots connected to kdirwatch
}
@@ -412,7 +412,7 @@ void KCMDesignerFields::startDesigner()
// check if path exists and create one if not.
TQString cepPath = localUiDir();
if( !TDEGlobal::dirs()->exists(cepPath) ) {
- KIO::NetAccess::mkdir( cepPath, this );
+ TDEIO::NetAccess::mkdir( cepPath, this );
}
// finally jump there