aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/webview.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-09-02 12:38:21 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-09-02 12:38:21 +0200
commitde6225509a584df31be1b28146e73d8ecf72c7eb (patch)
tree853f04d227e47f3685d156d0d4fb43a51723dba7 /src/webengine/webview.cpp
parentPluginEditor: implement add plugin action (diff)
downloadsmolbote-de6225509a584df31be1b28146e73d8ecf72c7eb.tar.xz
Clean up ProfileManager
Diffstat (limited to 'src/webengine/webview.cpp')
-rw-r--r--src/webengine/webview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webengine/webview.cpp b/src/webengine/webview.cpp
index d7281e9..94f73bc 100644
--- a/src/webengine/webview.cpp
+++ b/src/webengine/webview.cpp
@@ -244,7 +244,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event)
});
auto *newTabMenu = new QMenu(tr("Open link in new tab with profile"), this);
- ProfileIterator it(ProfileManager::profileList());
+ ProfileIterator it(profileManager->profileList());
while(it.hasNext()) {
it.next();
connect(newTabMenu->addAction(it.key()), &QAction::triggered, this, [this, ctxdata, it]() {