From 5c53f984d68190b9213a0e17733360701ed4f888 Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Sun, 26 Feb 2012 22:06:02 +0800 Subject: [PATCH] Mark methods only used internally as private --- src/MainWindow.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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);