Show compact-mode icon also in Konqueror

Additionally a broken signal-connection has been fixed.
This commit is contained in:
Peter Penz 2011-11-06 12:12:35 +01:00
parent 3c77ffe832
commit e7390eba86
4 changed files with 5 additions and 5 deletions

View file

@ -47,8 +47,8 @@
</MenuBar>
<ToolBar name="mainToolBar"><text context="@title:menu">Dolphin Toolbar</text>
<Action name="icons" />
<Action name="compact" />
<Action name="details" />
<Action name="columns" />
</ToolBar>
<State name="has_selection" >
<enable>

View file

@ -160,7 +160,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) :
connect(m_previewsShown, SIGNAL(clicked()),
this, SLOT(slotShowPreviewChanged()));
connect(m_showInGroups, SIGNAL(clicked()),
this, SLOT(slotCategorizedSortingChanged()));
this, SLOT(slotGroupedSortingChanged()));
connect(m_showHiddenFiles, SIGNAL(clicked()),
this, SLOT(slotShowHiddenFilesChanged()));
@ -260,7 +260,7 @@ void ViewPropertiesDialog::slotSortOrderChanged(int index)
markAsDirty(true);
}
void ViewPropertiesDialog::slotCategorizedSortingChanged()
void ViewPropertiesDialog::slotGroupedSortingChanged()
{
m_viewProps->setGroupedSorting(m_showInGroups->isChecked());
markAsDirty(true);

View file

@ -53,7 +53,7 @@ private slots:
void slotViewModeChanged(int index);
void slotSortingChanged(int index);
void slotSortOrderChanged(int index);
void slotCategorizedSortingChanged();
void slotGroupedSortingChanged();
void slotSortFoldersFirstChanged();
void slotShowPreviewChanged();
void slotShowHiddenFilesChanged();

View file

@ -69,7 +69,7 @@ void DolphinViewActionHandler::setCurrentView(DolphinView* view)
QList<DolphinView::AdditionalInfo>)),
this, SLOT(slotAdditionalInfoListChanged(QList<DolphinView::AdditionalInfo>,
QList<DolphinView::AdditionalInfo>)));
connect(view, SIGNAL(categorizedSortingChanged(bool)),
connect(view, SIGNAL(groupedSortingChanged(bool)),
this, SLOT(slotGroupedSortingChanged(bool)));
connect(view, SIGNAL(hiddenFilesShownChanged(bool)),
this, SLOT(slotHiddenFilesShownChanged(bool)));