| 14 | #include <QDebug> |
| 15 | |
| 16 | BookmarkTableModel::BookmarkTableModel(BookmarkManager *bookmarkMgr, QObject *parent) : |
| 17 | QAbstractTableModel(parent), |
| 18 | m_bookmarkMgr(bookmarkMgr), |
| 19 | m_folder(bookmarkMgr->getBookmarksBar()), |
| 20 | m_searchModeOn(false), |
| 21 | m_searchResults() |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | QVariant BookmarkTableModel::headerData(int section, Qt::Orientation orientation, int role) const |
| 26 | { |
nothing calls this directly
no test coverage detected