From e1f28c6b3809cb55f5c1462a3a02d018b50823dd Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Thu, 14 Mar 2013 14:28:59 +0100 Subject: Let rekonq save file remotely (again) Restored the (il)logic fix applied for bug 242675 and added a big note to NOT remove it again BUG: 316684 --- src/webtab/sslinfodialog.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/webtab/sslinfodialog.cpp') diff --git a/src/webtab/sslinfodialog.cpp b/src/webtab/sslinfodialog.cpp index 2f0b44e4..e0ae6dea 100644 --- a/src/webtab/sslinfodialog.cpp +++ b/src/webtab/sslinfodialog.cpp @@ -139,9 +139,11 @@ void SslInfoDialog::exportCert() QString name = m_host + QL1S(".pem"); - QString certPath = KFileDialog::getSaveFileName(name, QString(), this); + // NOTE: Please, no more use here getSaveFileName as it seems it cannot properly + // handle remote URLs + KUrl certPath = KFileDialog::getSaveUrl(name, QString(), this); - QFile file(certPath); + QFile file(certPath.pathOrUrl()); if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) return; -- cgit v1.2.1