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:
authorNathan Craddock <nzcraddock@gmail.com>2019-06-30 05:40:45 +0300
committerNathan Craddock <nzcraddock@gmail.com>2019-06-30 05:48:14 +0300
commitcc3f7abbb09a85f8c80084ad1baecbe71369415a (patch)
tree59cca038eee71152a14d377e0d3cbda297f03b70 /source/blender/blenkernel/BKE_main.h
parentd5ad3d6fc8ae5eb1360ff29bf92810b35f2bce74 (diff)
Outliner: Move sync_select_dirty_flag to new file
Adds `outliner_sync.c` for the global rather than storing in Main.
Diffstat (limited to 'source/blender/blenkernel/BKE_main.h')
-rw-r--r--source/blender/blenkernel/BKE_main.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/blender/blenkernel/BKE_main.h b/source/blender/blenkernel/BKE_main.h
index 415a9aecd5d..1c987d5eb8e 100644
--- a/source/blender/blenkernel/BKE_main.h
+++ b/source/blender/blenkernel/BKE_main.h
@@ -82,10 +82,6 @@ typedef struct Main {
/** All current ID's exist in the last memfile undo step. */
char is_memfile_undo_written;
- /* Flag to indicate if a sync is to extend or replace the outliner selection */
- char sync_select_dirty_flag;
- struct SpaceOutliner *clean_outliner; /* to store the clean outliner to be synced from */
-
BlendThumbnail *blen_thumb;
struct Library *curlib;
@@ -136,13 +132,6 @@ typedef struct Main {
struct MainLock *lock;
} Main;
-/* Main->sync_select_dirty_flag */
-enum {
- SYNC_SELECT_NONE = 0,
- SYNC_SELECT_REPLACE = 1,
- SYNC_SELECT_EXTEND = 2,
-};
-
struct Main *BKE_main_new(void);
void BKE_main_free(struct Main *mainvar);