summaryrefslogtreecommitdiff
path: root/src/historymodels.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:38:50 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:38:50 +0100
commit002b4e117e935cc39c96ea99717646b8c6974b81 (patch)
tree1e853074b3a8a04ad051c57f62b4958145802040 /src/historymodels.cpp
parent(BIG commit) API change (diff)
downloadrekonq-002b4e117e935cc39c96ea99717646b8c6974b81.tar.xz
removing unuseful kDebug calls
Diffstat (limited to 'src/historymodels.cpp')
-rw-r--r--src/historymodels.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/historymodels.cpp b/src/historymodels.cpp
index 446791ee..cf8d1aed 100644
--- a/src/historymodels.cpp
+++ b/src/historymodels.cpp
@@ -37,7 +37,6 @@
#include "application.h"
// KDE Includes
-#include <KDebug>
#include <KStandardDirs>
#include <KLocale>
@@ -923,9 +922,6 @@ QModelIndex HistoryTreeModel::mapFromSource(const QModelIndex &sourceIndex) cons
--it;
int dateRow = qMax(0, it - m_sourceRowCache.begin());
- // FIXME fix crach on history submenu open. BUG:'ASSERT failure in QList<T>::at: "index out of range"'
- // it crashes when dateRow == 1
- // kDebug() << m_sourceRowCache << dateRow;
int row = sourceIndex.row() - m_sourceRowCache.at(dateRow);
return createIndex(row, sourceIndex.column(), dateRow + 1);
}