diff options
| author | Kevin Ottens <[email protected]> | 2007-04-09 09:16:39 +0000 |
|---|---|---|
| committer | Kevin Ottens <[email protected]> | 2007-04-09 09:16:39 +0000 |
| commit | 30161a7b3fe76578f43a61381c98a5ae475ed52a (patch) | |
| tree | f79e987e472925336c33be52221a33613ae1cee3 /src/dolphinsettings.h | |
| parent | 714d08f17c9135704cf48534823611cb015590a0 (diff) | |
Dolphin is now KBookmark* free.
svn path=/trunk/KDE/kdebase/apps/; revision=651766
Diffstat (limited to 'src/dolphinsettings.h')
| -rw-r--r-- | src/dolphinsettings.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/dolphinsettings.h b/src/dolphinsettings.h index 2e1e252d1..202ce1db7 100644 --- a/src/dolphinsettings.h +++ b/src/dolphinsettings.h @@ -27,8 +27,7 @@ class ColumnModeSettings; class DetailsModeSettings; class GeneralSettings; class IconsModeSettings; -class KBookmark; -class KBookmarkManager; +class KFilePlacesModel; /** * @brief Manages and stores all settings from Dolphin. @@ -49,13 +48,7 @@ public: IconsModeSettings* iconsModeSettings() const { return m_iconsModeSettings; } DetailsModeSettings* detailsModeSettings() const { return m_detailsModeSettings; } ColumnModeSettings* columnModeSettings() const { return m_columnModeSettings; } - - KBookmarkManager* bookmarkManager() const; - - // TODO: should this really belong here or get moved to a derived KBookmarkManager? - // Dolphin uses some lists where an index is given and the corresponding bookmark - // should get retrieved... - KBookmark bookmark(int index) const; + KFilePlacesModel* placesModel() const { return m_placesModel; } /** @see DolphinSettingsBase::save */ virtual void save(); @@ -69,6 +62,7 @@ private: IconsModeSettings* m_iconsModeSettings; DetailsModeSettings* m_detailsModeSettings; ColumnModeSettings* m_columnModeSettings; + KFilePlacesModel* m_placesModel; }; #endif |
