summaryrefslogtreecommitdiffstats
path: root/quanta/src/quanta.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/src/quanta.cpp')
-rw-r--r--quanta/src/quanta.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/quanta/src/quanta.cpp b/quanta/src/quanta.cpp
index 434bff2f..cbcbfd50 100644
--- a/quanta/src/quanta.cpp
+++ b/quanta/src/quanta.cpp
@@ -302,7 +302,7 @@ QuantaApp::~QuantaApp()
tempFileList.clear();
for (uint i = 0; i < tempDirList.count(); i++)
{
- KIO::NetAccess::del(KURL().fromPathOrURL(tempDirList.at(i)->name()), this);
+ TDEIO::NetAccess::del(KURL().fromPathOrURL(tempDirList.at(i)->name()), this);
}
tempDirList.clear();
TQDictIterator<ToolbarEntry> iter(m_toolbarList);
@@ -879,7 +879,7 @@ void QuantaApp::slotInsertTag(const KURL& url, DirInfo dirInfo)
if (mimetype.contains("image"))
{
TQString imgFileName;
- KIO::NetAccess::download(url, imgFileName, this);
+ TDEIO::NetAccess::download(url, imgFileName, this);
TQImage img(imgFileName);
if (!img.isNull())
{
@@ -900,7 +900,7 @@ void QuantaApp::slotInsertTag(const KURL& url, DirInfo dirInfo)
w->insertTag(imgTag);
isImage = true;
}
- KIO::NetAccess::removeTempFile(imgFileName);
+ TDEIO::NetAccess::removeTempFile(imgFileName);
}
if (!isImage)
{
@@ -1414,7 +1414,7 @@ void QuantaApp::slotShowPreviewWidget(bool show)
{
KURL url = m_previewedDocument->url();
url.setFileName("preview-" + url.fileName());
- KIO::NetAccess::del(url, this);
+ TDEIO::NetAccess::del(url, this);
Document *w = view->document();
if (w)
w->view()->setFocus();
@@ -1452,7 +1452,7 @@ void QuantaApp::slotChangePreviewStatus()
{
KURL url = m_previewedDocument->url();
url.setFileName("preview-" + url.fileName());
- KIO::NetAccess::del(url, this);
+ TDEIO::NetAccess::del(url, this);
}
slotRepaintPreview();
m_previewedDocument = 0L;
@@ -1474,7 +1474,7 @@ void QuantaApp::slotPreviewHasFocus(bool focus)
{
KURL url = m_previewedDocument->url();
url.setFileName("preview-" + url.fileName());
- KIO::NetAccess::del(url, this);
+ TDEIO::NetAccess::del(url, this);
}
m_previewedDocument = 0L;
}