Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2014-11-03 17:05:48 +0300
committerJens Verwiebe <info@jensverwiebe.de>2014-11-03 17:05:48 +0300
commit9e4229e0adc54c4218a192ee73ba415ddfccc706 (patch)
tree782d718f255b730c1bd2e44793d4427a504e2bd7 /source/blender/editors/space_file/fsmenu.h
parent8b5d86dfbad928cd56c02e718951a59e8133e00a (diff)
OSX/fsmenu: fix compiling on older gcc reported by Mike S
Diffstat (limited to 'source/blender/editors/space_file/fsmenu.h')
-rw-r--r--source/blender/editors/space_file/fsmenu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/fsmenu.h b/source/blender/editors/space_file/fsmenu.h
index 01bd4e95afa..f66bfcef7eb 100644
--- a/source/blender/editors/space_file/fsmenu.h
+++ b/source/blender/editors/space_file/fsmenu.h
@@ -47,7 +47,8 @@ typedef enum FSMenuCategory {
typedef enum FSMenuInsert {
FS_INSERT_SORTED = (1 << 0),
FS_INSERT_SAVE = (1 << 1),
- FS_INSERT_FIRST = (1 << 2) /* moves the item to the front of the list when its not already there */
+ FS_INSERT_FIRST = (1 << 2), /* moves the item to the front of the list when its not already there */
+ FS_APPEND_LAST = (1 << 3) /*just append to preseve delivered order */
} FSMenuInsert;
struct FSMenu;