diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2011-04-23 14:26:42 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2011-05-15 14:35:40 +0200 |
commit | 090ce0fe679386a426df25b1f0702a002af3a2c0 (patch) | |
tree | 08f512076e67c39fbdd80dddf00c1944ee8dcd8a /src/bookmarks/bookmarkscontextmenu.h | |
parent | Open source code by loading the page HTML instead of requesting (another time... (diff) | |
download | rekonq-090ce0fe679386a426df25b1f0702a002af3a2c0.tar.xz |
Null action for root bk folder in the bar
Diffstat (limited to 'src/bookmarks/bookmarkscontextmenu.h')
-rw-r--r-- | src/bookmarks/bookmarkscontextmenu.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/bookmarks/bookmarkscontextmenu.h b/src/bookmarks/bookmarkscontextmenu.h index 416416ef..34ef66e0 100644 --- a/src/bookmarks/bookmarkscontextmenu.h +++ b/src/bookmarks/bookmarkscontextmenu.h @@ -36,8 +36,11 @@ class BookmarkOwner; class BookmarksContextMenu : public KBookmarkContextMenu { public: - BookmarksContextMenu(const KBookmark &bookmark, KBookmarkManager *manager, BookmarkOwner *owner, QWidget *parent = 0); - + BookmarksContextMenu(const KBookmark &bookmark, + KBookmarkManager *manager, + BookmarkOwner *owner, + bool nullForced = false, + QWidget *parent = 0); virtual void addActions(); private: @@ -47,6 +50,7 @@ private: void addNullActions(); BookmarkOwner *m_bmOwner; + bool m_nullForced; }; #endif // BOOKMARKS_CONTEXT_MENU_H |