diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-02 12:38:21 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-02 12:38:21 +0200 |
commit | de6225509a584df31be1b28146e73d8ecf72c7eb (patch) | |
tree | 853f04d227e47f3685d156d0d4fb43a51723dba7 /src/mainwindow | |
parent | PluginEditor: implement add plugin action (diff) | |
download | smolbote-de6225509a584df31be1b28146e73d8ecf72c7eb.tar.xz |
Clean up ProfileManager
Diffstat (limited to 'src/mainwindow')
-rw-r--r-- | src/mainwindow/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow/mainwindow.cpp b/src/mainwindow/mainwindow.cpp index ccc5f1e..91e820a 100644 --- a/src/mainwindow/mainwindow.cpp +++ b/src/mainwindow/mainwindow.cpp @@ -382,7 +382,7 @@ void MainWindow::updatePageLoadProfileMenu() auto *browser = qobject_cast<Browser *>(qApp); Q_CHECK_PTR(browser); - ProfileIterator it(ProfileManager::profileList()); + ProfileIterator it(profileManager->profileList()); while(it.hasNext()) { it.next(); auto *profile = it.value(); |