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:
authorCampbell Barton <ideasman42@gmail.com>2020-06-01 06:57:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-01 07:06:55 +0300
commitf18ed7ad890ee5c89fc6e6a22e76c732fb5fc1bc (patch)
tree2f359678484ee870d778ce46abfc1d454cd23ab3 /source/blender/windowmanager/wm_files.h
parentd5a92b188b5de590a59db4497294acece77505bc (diff)
Fix T67577: Add-on unregister can't access preferences on factory reset
Diffstat (limited to 'source/blender/windowmanager/wm_files.h')
-rw-r--r--source/blender/windowmanager/wm_files.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/windowmanager/wm_files.h b/source/blender/windowmanager/wm_files.h
index e081742b904..a37eb6e777b 100644
--- a/source/blender/windowmanager/wm_files.h
+++ b/source/blender/windowmanager/wm_files.h
@@ -33,9 +33,9 @@ void wm_history_file_read(void);
void wm_homefile_read(struct bContext *C,
struct ReportList *reports,
bool use_factory_settings,
- bool use_empty_data,
- bool use_data,
- bool use_userdef,
+ const bool use_empty_data,
+ const bool use_data,
+ const bool use_userdef,
const char *filepath_startup_override,
const char *app_template_override,
bool *r_is_factory_startup);