diff options
| author | Peter Penz <[email protected]> | 2012-03-07 22:12:07 +0100 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-03-07 22:18:59 +0100 |
| commit | 08a485349f2bd73682ac806b97d3630c3a7dd3fd (patch) | |
| tree | 196869487673eeca1f4d2a3b208efb0f329951d7 /src/views/dolphinview.h | |
| parent | 90e6190f13caa50773c5d84550a7b42a18adce13 (diff) | |
Allow custom sorting of details-view columns
Fix regression that Dolphin 2.0 did not allow to adjust the sorting
of the details-view columns.
BUG: 164696
FIXED-IN: 4.8.2
Diffstat (limited to 'src/views/dolphinview.h')
| -rw-r--r-- | src/views/dolphinview.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index 7b7db3f9f..f2f15c592 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -111,7 +111,6 @@ public: enum AdditionalInfo { NoInfo = 0, - NameInfo, SizeInfo, DateInfo, PermissionsInfo, @@ -655,6 +654,13 @@ private slots: void slotSortRoleChangedByHeader(const QByteArray& current, const QByteArray& previous); /** + * Is invoked when the visible roles have been changed by the user by dragging + * a header item. The view properties of the directory will get updated. + */ + void slotVisibleRolesChangedByHeader(const QList<QByteArray>& current, + const QList<QByteArray>& previous); + + /** * Observes the item with the URL \a url. As soon as the directory * model indicates that the item is available, the item will * get selected and it is assured that the item stays visible. |
