diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:10:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:10:32 -0600 |
commit | 3fe437def8063926892bddf2dcc733861308836d (patch) | |
tree | 021d66ad023a32bc8ea0074a1ab3d01316aff8b0 /kugar | |
parent | 5b8ab149469c8e186ee8b05d90c0103ae722dd85 (diff) | |
download | koffice-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.cpp | 8 |
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 ); } } |