diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-12-14 15:27:32 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-12-14 15:45:21 +0200 |
commit | d970b1e28a11223b6dd1cd4a32918cfa9271e283 (patch) | |
tree | f2978d0d0f4f31cc3b6e5d65aec35173ca9eda74 /src/browser.cpp | |
parent | Update PKGBUILD to build with cmake (diff) | |
download | smolbote-d970b1e28a11223b6dd1cd4a32918cfa9271e283.tar.xz |
Code cleanup
Diffstat (limited to 'src/browser.cpp')
-rw-r--r-- | src/browser.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/browser.cpp b/src/browser.cpp index c9ed395..de5cdcf 100644 --- a/src/browser.cpp +++ b/src/browser.cpp @@ -7,7 +7,6 @@ */ #include "browser.h" -#include "about/aboutplugin.h" #include "applicationmenu.h" #include "bookmarks/bookmarkswidget.h" #include "configuration.h" @@ -49,15 +48,6 @@ Browser::~Browser() m_windows.clear(); } -void Browser::aboutPlugins() -{ - auto *dlg = new AboutPluginDialog; - for(auto *info : qAsConst(m_plugins)) { - dlg->add(info->loader); - } - dlg->exec(); -} - void Browser::loadConfiguration(const QString &path) { auto ctx = init_conf(path.toStdString()); |