summaryrefslogtreecommitdiff
path: root/ui/gridView.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:43 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:43 +0200
commit4226e548662339ea1ca37b45385a7cf9b237ff1e (patch)
tree9a3fa54b85d97f05164e41bdb96b82f748a37342 /ui/gridView.h
parent3.7 (diff)
downloadFreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.tar.gz
FreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.tar.bz2
FreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.zip
3.8
Diffstat (limited to 'ui/gridView.h')
-rw-r--r--ui/gridView.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/gridView.h b/ui/gridView.h
index 53ca017b..c0639d2e 100644
--- a/ui/gridView.h
+++ b/ui/gridView.h
@@ -111,7 +111,9 @@ public:
SORT_BY_SYNC_DIRECTION
};
- void sortView(const SortType type, const bool onLeft, const bool ascending); //always call this method for sorting, never sort externally!
+ bool static getDefaultDirection(SortType type); //true: ascending; false: descending
+
+ void sortView(SortType type, bool onLeft, bool ascending); //always call this method for sorting, never sort externally!
private:
class SerializeHierarchy;
bgstack15