diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 15:38:50 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 15:38:50 +0100 |
commit | 002b4e117e935cc39c96ea99717646b8c6974b81 (patch) | |
tree | 1e853074b3a8a04ad051c57f62b4958145802040 /src/mainwindow.cpp | |
parent | (BIG commit) API change (diff) | |
download | rekonq-002b4e117e935cc39c96ea99717646b8c6974b81.tar.xz |
removing unuseful kDebug calls
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 40274987..47d0b90d 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -462,7 +462,6 @@ void MainWindow::setupSidePanel() void MainWindow::updateConfiguration() { // ============== General ================== - kDebug() << "update conf"; m_view->updateTabBar(); // =========== Fonts ============== @@ -1050,12 +1049,10 @@ void MainWindow::clearPrivateData() { QString path = KStandardDirs::locateLocal("cache", QString("thumbs/rekonq"), true); path.remove("rekonq"); - kDebug() << path; QDir cacheDir(path); QStringList fileList = cacheDir.entryList(); foreach(const QString &str, fileList) { - kDebug() << str; QFile file(path + str); file.remove(); } @@ -1076,13 +1073,11 @@ void MainWindow::aboutToShowBackMenu() if(historyCount > 8) historyCount = 8; - kDebug() << "History Count: " << historyCount; for (int i = history->backItems(historyCount).count() - 1; i >= 0; --i) { QWebHistoryItem item = history->backItems(history->count()).at(i); KAction *action = new KAction(this); action->setData( i - history->currentItemIndex() ); - kDebug() << "Current Item Index: " << history->currentItemIndex(); QIcon icon = Application::icon(item.url()); action->setIcon(icon); action->setText(item.title()); @@ -1094,7 +1089,6 @@ void MainWindow::aboutToShowBackMenu() void MainWindow::openActionUrl(QAction *action) { int offset = action->data().toInt(); - kDebug() << "Offset: " << offset; QWebHistory *history = currentTab()->history(); if(!history->itemAt(offset).isValid()) |