| 5 | #include <deque> |
| 6 | |
| 7 | BookmarkMenu::BookmarkMenu(QWidget *parent) : |
| 8 | QMenu(parent), |
| 9 | m_addPageBookmarks(new QAction(tr("Bookmark this page"), parent)), |
| 10 | m_removePageBookmarks(new QAction(tr("Remove this bookmark"), parent)), |
| 11 | m_bookmarkManager(nullptr) |
| 12 | { |
| 13 | } |
| 14 | |
| 15 | BookmarkMenu::BookmarkMenu(const QString &title, QWidget *parent) : |
| 16 | QMenu(title, parent), |
nothing calls this directly
no outgoing calls
no test coverage detected