From 6379d18e0ec321e0e08a1389ee4a12f0eaa5992e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:28:14 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kmouth/phrasebook/phrasebook.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kmouth/phrasebook') diff --git a/kmouth/phrasebook/phrasebook.cpp b/kmouth/phrasebook/phrasebook.cpp index f03cd96..8f51ba6 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 KIO::NetAccess::upload(tempFile.name(), url); + return TDEIO::NetAccess::upload(tempFile.name(), url); } } @@ -273,7 +273,7 @@ int PhraseBook::save (TQWidget *parent, const TQString &title, KURL &url, bool p return -1; } - if (KIO::NetAccess::exists(url)) { + if (TDEIO::NetAccess::exists(url)) { 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 (KIO::NetAccess::download (fileUrl, tempFile)) { + if (TDEIO::NetAccess::download (fileUrl, tempFile)) { TQStringList list = TQStringList(); // First: try to load it as a normal phrase book @@ -362,7 +362,7 @@ bool PhraseBook::open (const KURL &url) { else error = true; } - KIO::NetAccess::removeTempFile (tempFile); + TDEIO::NetAccess::removeTempFile (tempFile); return !error; } -- cgit v1.2.3