aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow/menubar.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-04-29 18:49:07 +0300
committerAqua-sama <aqua@iserlohn-fortress.net>2020-05-08 13:40:29 +0300
commite87693c54ca97ed3a6ed25f9eaae8ab223fc18b1 (patch)
tree54194ca979ac7e646ff3f10ed6d7f7753273f0be /src/mainwindow/menubar.h
parentExpand pluginloader test coverage (diff)
downloadsmolbote-e87693c54ca97ed3a6ed25f9eaae8ab223fc18b1.tar.xz
libwebengine
Make src/webengine into a static library - Add some tests - Updated manpage - Remove WebProfileManager::id and WebProfileManager::instance - Add consumable semantics checks to WebProfileManager - Add WebProfileManager::walk Add ApplicationMenu class
Diffstat (limited to 'src/mainwindow/menubar.h')
-rw-r--r--src/mainwindow/menubar.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainwindow/menubar.h b/src/mainwindow/menubar.h
index f369bef..7795816 100644
--- a/src/mainwindow/menubar.h
+++ b/src/mainwindow/menubar.h
@@ -18,14 +18,11 @@ class MenuBar : public QMenuBar
Q_OBJECT
public:
- MenuBar(MainWindow *parent = nullptr);
-
- QAction *insertPlugin(QMenu *menu);
+ MenuBar(QMenu *appMenu, MainWindow *parent = nullptr);
void insertSubWindow(SubWindow *subwindow);
private:
MainWindow *m_parent = nullptr;
- QMenu *smolbote = nullptr;
QMenu *window = nullptr;
QAction *pluginInsertLocation = nullptr;
};