diff options
| author | Brian Potchik <brian@vector35.com> | 2019-04-13 22:20:28 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-04-13 23:09:53 -0400 |
| commit | 65c520f0b672b273595965f35d193560de343e82 (patch) | |
| tree | 6e5fdcf789af7aa61d3f2138b2abce623fe5058d | |
| parent | a90ece36345f85845323d869cc3ab3fbf0b6d44f (diff) | |
Add default constructors for menus.
| -rw-r--r-- | ui/menus.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -19,6 +19,7 @@ class BINARYNINJAUIAPI ContextMenuManager MenuInstance* m_instance; public: + ContextMenuManager(): m_parent(nullptr), m_menu(nullptr), m_instance(nullptr) { } ContextMenuManager(QWidget* parent); ~ContextMenuManager(); QMenu* create(); @@ -42,6 +43,7 @@ protected: QTimer* m_timer; public: + MenuHelper() { } MenuHelper(QWidget* parent); void setBackgroundColorRole(QPalette::ColorRole role = QPalette::Highlight); |
