summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-12-15 16:49:05 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-12-15 16:49:05 +0100
commit7274cfeb263c9d463045ff6ad581588319a9cd48 (patch)
treec10aaff128b213df4d464152347886e38e3208a4 /src/mainwindow.h
parentSmall cleanup in history pages (diff)
downloadrekonq-7274cfeb263c9d463045ff6ad581588319a9cd48.tar.xz
Hard-coded shortcuts fix
toggleViewAction from QDockWidget is const. We need to create a new KAction to let people eventually configure it. BUG: 289039
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index e64cdc22..8d827b04 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -182,9 +182,14 @@ private Q_SLOTS:
void enableNetworkAnalysis(bool);
void setEditable(bool);
- void initBookmarkBar();
void toggleBookmarkBarVisible(bool);
+ /**
+ * This is for the things to do ABSOLUTELY AFTER ctor launch:
+ * the less, the better.
+ */
+ void postLaunch();
+
private:
MainView *m_view;
FindBar *m_findBar;