summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoTemplateCreateDia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kofficeui/KoTemplateCreateDia.cpp')
-rw-r--r--lib/kofficeui/KoTemplateCreateDia.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/kofficeui/KoTemplateCreateDia.cpp b/lib/kofficeui/KoTemplateCreateDia.cpp
index b82efbb6..3b4975f0 100644
--- a/lib/kofficeui/KoTemplateCreateDia.cpp
+++ b/lib/kofficeui/KoTemplateCreateDia.cpp
@@ -272,7 +272,7 @@ void KoTemplateCreateDia::slotOk() {
tmpIcon=".icon/"+file+".png";
icon=iconDir+file+".png";
}
- while ( KIO::NetAccess::exists( dest, true, this ) );
+ while ( TDEIO::NetAccess::exists( dest, true, this ) );
}
bool ignore = false;
kdDebug(30004) << "Trying to create template: " << d->m_name->text() << "URL=" << ".source/"+file+ext << " ICON=" << tmpIcon << endl;
@@ -306,7 +306,7 @@ void KoTemplateCreateDia::slotOk() {
if ( !ignore )
{
// copy the template file
- KIO::NetAccess::file_copy( orig, dest, -1, true, false, this );
+ TDEIO::NetAccess::file_copy( orig, dest, -1, true, false, this );
// save the picture
if(d->m_default->isChecked() && !m_pixmap.isNull())
@@ -324,10 +324,10 @@ void KoTemplateCreateDia::slotOk() {
if((*it).contains(dir)==0) {
orig.setPath( (*it)+".directory" );
// Check if we can read the file
- if( KIO::NetAccess::exists(orig, true, this) ) {
+ if( TDEIO::NetAccess::exists(orig, true, this) ) {
dest.setPath( dir+"/.directory" );
// We copy the file with overwrite
- KIO::NetAccess::file_copy( orig, dest, -1, true, false, this );
+ TDEIO::NetAccess::file_copy( orig, dest, -1, true, false, this );
ready=true;
}
}
@@ -337,7 +337,7 @@ void KoTemplateCreateDia::slotOk() {
if ( d->m_defaultTemplate->isChecked() )
{
- KConfigGroup grp( d->m_instance->config(), "TemplateChooserDialog" );
+ TDEConfigGroup grp( d->m_instance->config(), "TemplateChooserDialog" );
grp.writeEntry( "LastReturnType", "Template" );
grp.writePathEntry( "FullTemplateName", dir + "/" + t->file() );
grp.writePathEntry( "AlwaysUseTemplate", dir + "/" + t->file() );