From 57781593efb1599293922ca42e94234b4963206e Mon Sep 17 00:00:00 2001 From: gregory guy Date: Tue, 26 Jan 2021 12:01:42 +0100 Subject: [PATCH] Silence few warnings due to some deprecated. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: gregory guy Signed-off-by: Slávek Banko (cherry picked from commit 5ce12710c2e6c2d896eebb228fc81658d63e3b6e) --- kmouth/phrasebook/phrasebook.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kmouth/phrasebook/phrasebook.cpp b/kmouth/phrasebook/phrasebook.cpp index 94eb42f..c095e6d 100644 --- a/kmouth/phrasebook/phrasebook.cpp +++ b/kmouth/phrasebook/phrasebook.cpp @@ -245,7 +245,7 @@ bool PhraseBook::save (const KURL &url, bool asPhrasebook) { save (*tempFile.textStream(), asPhrasebook); tempFile.close(); - return TDEIO::NetAccess::upload(tempFile.name(), url); + return TDEIO::NetAccess::upload( tempFile.name(), url, 0 ); } } @@ -273,7 +273,7 @@ int PhraseBook::save (TQWidget *parent, const TQString &title, KURL &url, bool p return -1; } - if (TDEIO::NetAccess::exists(url)) { + if (TDEIO::NetAccess::exists(url, false, 0)) { if (KMessageBox::warningContinueCancel(0,TQString("%1").arg(i18n("The file %1 already exists. " "Do you want to overwrite it?").arg(url.url())),i18n("File Exists"),i18n("&Overwrite"))==KMessageBox::Cancel) { return 0; @@ -334,7 +334,7 @@ bool PhraseBook::open (const KURL &url) { fileUrl.setPath (url.url()); } - if (TDEIO::NetAccess::download (fileUrl, tempFile)) { + if (TDEIO::NetAccess::download(fileUrl, tempFile, 0)) { TQStringList list = TQStringList(); // First: try to load it as a normal phrase book