diff options
| author | Kevin Ottens <[email protected]> | 2006-11-29 18:09:26 +0000 |
|---|---|---|
| committer | Kevin Ottens <[email protected]> | 2006-11-29 18:09:26 +0000 |
| commit | b1d5b6b7467d15417131c8df8fdecb22b2008db4 (patch) | |
| tree | 119882f5616809a57eb9b81621dc6361a97ed282 /src/dolphinsettings.cpp | |
| parent | 91c5f52d87c7af2412b5935095df1f90d6eb4a04 (diff) | |
Get ride of the sidebar and use dockwidgets instead.
Default is now three panes, but the dockwidgets can be stacked, etc. to
the user convenience.
There's a slight loss in feature since I disabled dockwidgets hiding,
it's simply because some rework is still needed in kdelibs and Qt to
make them work correctly.
svn path=/trunk/playground/utils/dolphin/; revision=609186
Diffstat (limited to 'src/dolphinsettings.cpp')
| -rw-r--r-- | src/dolphinsettings.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dolphinsettings.cpp b/src/dolphinsettings.cpp index f197d36f0..11c18914f 100644 --- a/src/dolphinsettings.cpp +++ b/src/dolphinsettings.cpp @@ -34,7 +34,6 @@ #include "iconsmodesettings.h" #include "previewsmodesettings.h" #include "detailsmodesettings.h" -#include "sidebarsettings.h" #include <Q3IconView> @@ -78,7 +77,6 @@ void DolphinSettings::save() m_iconsModeSettings->writeConfig(); m_previewsModeSettings->writeConfig(); m_detailsModeSettings->writeConfig(); - m_sidebarSettings->writeConfig(); QString basePath = KGlobal::instance()->instanceName(); basePath.append("/bookmarks.xml"); @@ -163,7 +161,6 @@ DolphinSettings::DolphinSettings() m_iconsModeSettings = new IconsModeSettings(); m_previewsModeSettings = new PreviewsModeSettings(); m_detailsModeSettings = new DetailsModeSettings(); - m_sidebarSettings = new SidebarSettings(); } DolphinSettings::~DolphinSettings() @@ -179,7 +176,4 @@ DolphinSettings::~DolphinSettings() delete m_detailsModeSettings; m_detailsModeSettings = 0; - - delete m_sidebarSettings; - m_sidebarSettings = 0; } |
