summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 23ccf25d..beab3afc 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -669,14 +669,14 @@ void MainWindow::fileSaveAs()
name = srcUrl.host() + QString(".html");
}
- const QString destUrl = KFileDialog::getSaveFileName(name, QString(), this);
+ const KUrl destUrl = KFileDialog::getSaveUrl(name, QString(), this);
if (destUrl.isEmpty())
return;
if (w->page()->isContentEditable())
{
QString code = w->page()->mainFrame()->toHtml();
- QFile file(destUrl);
+ QFile file(destUrl.url());
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
return;
@@ -686,7 +686,7 @@ void MainWindow::fileSaveAs()
return;
}
- KIO::Job *job = KIO::file_copy(srcUrl, KUrl(destUrl), -1, KIO::Overwrite);
+ KIO::Job *job = KIO::file_copy(srcUrl, destUrl, -1, KIO::Overwrite);
job->addMetaData("MaxCacheSize", "0"); // Don't store in http cache.
job->addMetaData("cache", "cache"); // Use entry from cache if available.
job->uiDelegate()->setAutoErrorHandlingEnabled(true);