diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-01-17 16:10:59 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-01-17 16:10:59 +0100 |
commit | b964097450e083d1cff0faace896ef416a718f90 (patch) | |
tree | 84699936ecf5bd073f639f3423727993a0fc1120 /src/mainwindow.cpp | |
parent | Remove "closed tabs menu" from available actions in mainwindow (diff) | |
download | rekonq-b964097450e083d1cff0faace896ef416a718f90.tar.xz |
Fix a bookmarks bar crash
A stupid regression introduced... by me, sorry!
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 87b92a70..76495aff 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -295,7 +295,7 @@ void MainWindow::configureToolbars() KEditToolBar dlg(factory(), this); // The bookmark bar needs to be refill after the UI changes are finished - connect(&dlg, SIGNAL(newToolBarConfig()), this, SLOT(initBookmarkBar())); + connect(&dlg, SIGNAL(newToolBarConfig()), this, SLOT(postLaunch())); dlg.exec(); } |