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