diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-29 14:56:39 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-29 14:56:39 +0200 |
commit | 9abf7a9690163737d3e70b3b52d814135858d0d5 (patch) | |
tree | 037b1d3a12115221182cb283c14736229c52a8d8 /src/subwindow | |
parent | Update repository path in license headers (diff) | |
download | smolbote-9abf7a9690163737d3e70b3b52d814135858d0d5.tar.xz |
ProfileManager: move initial profile loading to ProfileManager
Diffstat (limited to 'src/subwindow')
-rw-r--r-- | src/subwindow/subwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/subwindow/subwindow.cpp b/src/subwindow/subwindow.cpp index 7dc1cdf..44ac1b1 100644 --- a/src/subwindow/subwindow.cpp +++ b/src/subwindow/subwindow.cpp @@ -50,6 +50,7 @@ SubWindow::SubWindow(const std::unique_ptr<Configuration> &config, QWidget *pare Browser *browser = qobject_cast<Browser *>(qApp); Q_CHECK_PTR(browser); + auto *profileManager = dynamic_cast<Browser *>(qApp)->getProfileManager(); loadProfile_menu->addActions(profileManager->createProfileMenu([this, profileName_action](WebProfile *profile) { this->setProfile(profile); profileName_action->setText(tr("Profile: %1").arg(profile->name())); |