diff options
| author | Laurent Montel <[email protected]> | 2006-11-22 08:22:45 +0000 |
|---|---|---|
| committer | Laurent Montel <[email protected]> | 2006-11-22 08:22:45 +0000 |
| commit | 20b58b6c03f6fa56d0cc1da90c13658664c153f1 (patch) | |
| tree | 1ac95537c3d0c6f35e5ca9dbbf7fe9c90e14a3b7 /src/dolphinview.cpp | |
| parent | 6987f297e6e275a1f46aa0f33919e86684c9ed8b (diff) | |
Some port
Remove not necessary file
svn path=/trunk/playground/utils/dolphin/; revision=606884
Diffstat (limited to 'src/dolphinview.cpp')
| -rw-r--r-- | src/dolphinview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index d6dc75d23..fb75f1c67 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -417,7 +417,7 @@ void DolphinView::setSorting(Sorting sorting) ViewProperties props(url()); props.setSorting(sorting); - view->setSorting(static_cast<QDir::SortSpec>(spec)); + view->setSorting(static_cast<QDir::SortFlags>(spec)); emit signalSortingChanged(sorting); } @@ -425,7 +425,7 @@ void DolphinView::setSorting(Sorting sorting) DolphinView::Sorting DolphinView::sorting() const { - const QDir::SortSpec spec = fileView()->sorting(); + const QDir::SortFlags spec = fileView()->sorting(); if (spec & QDir::Time) { return SortByDate; @@ -449,7 +449,7 @@ void DolphinView::setSortOrder(Qt::SortOrder order) ViewProperties props(url()); props.setSortOrder(order); - view->setSorting(static_cast<QDir::SortSpec>(sorting)); + view->setSorting(static_cast<QDir::SortFlags>(sorting)); emit signalSortOrderChanged(order); } |
