diff --git a/src/MainWindow.h b/src/MainWindow.h index 4a1c5ca7..83529dbb 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -71,19 +71,6 @@ public: */ ViewManager* viewManager() const; - /** - * Returns the search bar. - * - * This is a convenience method. The search bar is actually owned by - * ViewManager, or more precisely, by ViewContainer. - */ - IncrementalSearchBar* searchBar() const; - - /** - * Returns the bookmark handler associated with this window. - */ - BookmarkHandler* bookmarkHandler() const; - signals: /** * Emitted by the main window to request the creation of a new session. @@ -173,6 +160,19 @@ private: void setupWidgets(); QString activeSessionDir() const; + /** + * Returns the search bar. + * + * This is a convenience method. The search bar is actually owned by + * ViewManager, or more precisely, by ViewContainer. + */ + IncrementalSearchBar* searchBar() const; + + /** + * Returns the bookmark handler associated with this window. + */ + BookmarkHandler* bookmarkHandler() const; + // sets the active shortcuts of actions in 'dest' to the shortcuts of actions // with the same name in 'source' (see KAction::ActiveShortcut) static void syncActiveShortcuts(KActionCollection* dest, const KActionCollection* source);