summaryrefslogtreecommitdiffstats
path: root/kugar
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:10:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:10:32 -0600
commit3fe437def8063926892bddf2dcc733861308836d (patch)
tree021d66ad023a32bc8ea0074a1ab3d01316aff8b0 /kugar
parent5b8ab149469c8e186ee8b05d90c0103ae722dd85 (diff)
downloadkoffice-3fe437def8063926892bddf2dcc733861308836d.tar.gz
koffice-3fe437def8063926892bddf2dcc733861308836d.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kugar')
-rw-r--r--kugar/part/kugar_part.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kugar/part/kugar_part.cpp b/kugar/part/kugar_part.cpp
index 5343916b..807d62b1 100644
--- a/kugar/part/kugar_part.cpp
+++ b/kugar/part/kugar_part.cpp
@@ -163,7 +163,7 @@ void KugarPart::slotPreferredTemplate( const TQString &tpl )
KURL tmpURL( m_docURL );
tmpURL.setFileName( "" );
tmpURL.addPath( tpl );
- if ( KIO::NetAccess::download( tmpURL, localtpl ) )
+ if ( TDEIO::NetAccess::download( tmpURL, localtpl ) )
isTemp = true;
else
KMessageBox::sorry( 0, i18n( "Unable to download template file: %1" ).arg( url.prettyURL() ) );
@@ -180,7 +180,7 @@ void KugarPart::slotPreferredTemplate( const TQString &tpl )
KURL tmpURL( m_docURL );
tmpURL.setFileName( "" );
tmpURL.addPath( tpl );
- if ( KIO::NetAccess::download( tmpURL, localtpl ) )
+ if ( TDEIO::NetAccess::download( tmpURL, localtpl ) )
isTemp = true;
else
KMessageBox::sorry( 0, i18n( "Unable to download template file: %1" ).arg( url.prettyURL() ) );
@@ -189,7 +189,7 @@ void KugarPart::slotPreferredTemplate( const TQString &tpl )
}
else
{
- if ( KIO::NetAccess::download( url, localtpl ) )
+ if ( TDEIO::NetAccess::download( url, localtpl ) )
isTemp = true;
else
KMessageBox::sorry( 0, i18n( "Unable to download template file: %1" ).arg( url.prettyURL() ) );
@@ -252,7 +252,7 @@ void KugarPart::slotPreferredTemplate( const TQString &tpl )
KMessageBox::sorry( 0, i18n( "Unable to open template file: %1" ).arg( localtpl ) );
if ( isTemp )
- KIO::NetAccess::removeTempFile( localtpl );
+ TDEIO::NetAccess::removeTempFile( localtpl );
}
}