diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-05-22 23:43:46 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-05-22 23:43:46 +0200 |
commit | 370d5677ba15c4e41ba2513bbeed266fe69cbe41 (patch) | |
tree | d45d54f9644709f0f4324280c47999c7d5e7601e /src/history/historymanager.cpp | |
parent | show url on file:// && ftp:// schemes (diff) | |
download | rekonq-370d5677ba15c4e41ba2513bbeed266fe69cbe41.tar.xz |
Cleaning some kDebug calls
Diffstat (limited to 'src/history/historymanager.cpp')
-rw-r--r-- | src/history/historymanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history/historymanager.cpp b/src/history/historymanager.cpp index 8a29aa90..c0f87935 100644 --- a/src/history/historymanager.cpp +++ b/src/history/historymanager.cpp @@ -468,7 +468,7 @@ void HistoryManager::addDownload(const QString &srcUrl, const QString &destUrl) QFile downloadFile(downloadFilePath); if (!downloadFile.open(QFile::WriteOnly | QFile::Append)) { - kDebug() << "azz..."; + kDebug() << "Unable to open download file (WRITE mode).."; return; } QDataStream out(&downloadFile); @@ -487,7 +487,7 @@ DownloadList HistoryManager::downloads() QFile downloadFile(downloadFilePath); if (!downloadFile.open(QFile::ReadOnly)) { - kDebug() << "azz..."; + kDebug() << "Unable to open download file (READ mode).."; return list; } |