┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinsettings.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-12-13 07:41:11 +0000
committerPeter Penz <[email protected]>2006-12-13 07:41:11 +0000
commit163fa7ce30c0bd1b18d0c750bf9358560c2db7af (patch)
treecf99237a8dd236324fa1fd7967712f861be0477b /src/dolphinsettings.h
parentcb2b58535bedacbec50b3dad9680b1fa4fe30a9e (diff)
Instead of having a the 3 view modes "icons", "details" and "previews" only 2 view modes are used now: "icons" and "details". Whether a preview is shown or not is part of the directory view properties. This also means that it will be possible to show previews in the "details" view in future releases.
svn path=/trunk/playground/utils/dolphin/; revision=613029
Diffstat (limited to 'src/dolphinsettings.h')
-rw-r--r--src/dolphinsettings.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/dolphinsettings.h b/src/dolphinsettings.h
index ce56c0d79..fac7894cd 100644
--- a/src/dolphinsettings.h
+++ b/src/dolphinsettings.h
@@ -25,7 +25,6 @@ class KBookmark;
class KBookmarkManager;
class GeneralSettings;
class IconsModeSettings;
-class PreviewsModeSettings;
class DetailsModeSettings;
/**
@@ -45,7 +44,6 @@ public:
GeneralSettings* generalSettings() const { return m_generalSettings; }
IconsModeSettings* iconsModeSettings() const { return m_iconsModeSettings; }
- PreviewsModeSettings* previewsModeSettings() const { return m_previewsModeSettings; }
DetailsModeSettings* detailsModeSettings() const { return m_detailsModeSettings; }
KBookmarkManager* bookmarkManager() const;
@@ -93,7 +91,6 @@ protected:
private:
GeneralSettings* m_generalSettings;
IconsModeSettings* m_iconsModeSettings;
- PreviewsModeSettings* m_previewsModeSettings;
DetailsModeSettings* m_detailsModeSettings;
};