summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/umlviewimageexportermodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/umlviewimageexportermodel.cpp')
-rw-r--r--umbrello/umbrello/umlviewimageexportermodel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/umbrello/umbrello/umlviewimageexportermodel.cpp b/umbrello/umbrello/umlviewimageexportermodel.cpp
index 155ba9b8..7bd5a30a 100644
--- a/umbrello/umbrello/umlviewimageexportermodel.cpp
+++ b/umbrello/umbrello/umlviewimageexportermodel.cpp
@@ -153,7 +153,7 @@ TQString UMLViewImageExporterModel::exportView(UMLView* view, const TQString &im
// if the file wasn't local, upload the temp file to the target
if (!url.isLocalFile()) {
- if (!KIO::NetAccess::upload(tmpFile.name(), url, UMLApp::app())) {
+ if (!TDEIO::NetAccess::upload(tmpFile.name(), url, UMLApp::app())) {
tmpFile.unlink();
return i18n("There was a problem saving file: %1").arg(url.path());
}
@@ -198,9 +198,9 @@ bool UMLViewImageExporterModel::prepareDirectory(const KURL &url) const {
for (TQStringList::ConstIterator it = dirs.begin() ; it != dirs.end(); ++it ) {
directory.addPath(*it);
- if (!KIO::NetAccess::exists(directory, true, UMLApp::app())) {
+ if (!TDEIO::NetAccess::exists(directory, true, UMLApp::app())) {
- if (!KIO::NetAccess::mkdir(directory, UMLApp::app())) {
+ if (!TDEIO::NetAccess::mkdir(directory, UMLApp::app())) {
return false;
}
}