Mark methods only used internally as private

wilder-portage
Jekyll Wu 14 years ago
parent e958267ef4
commit 5c53f984d6
  1. 26
      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);

Loading…
Cancel
Save