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>2018-11-30 05:21:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-30 05:21:12 +0300
commitdd8469608bc80369929cc7ddb95b553ecbe20e88 (patch)
tree726c072468c8303c58279b5046ccdaa415ee4e46 /source/blender/windowmanager/wm_files.h
parenta8b8da55672c2177c55709321df3514355b513f4 (diff)
Cleanup: unused return arg
Diffstat (limited to 'source/blender/windowmanager/wm_files.h')
-rw-r--r--source/blender/windowmanager/wm_files.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/wm_files.h b/source/blender/windowmanager/wm_files.h
index 147ed882966..465abf011fa 100644
--- a/source/blender/windowmanager/wm_files.h
+++ b/source/blender/windowmanager/wm_files.h
@@ -35,8 +35,8 @@ struct Main;
struct wmOperatorType;
/* wm_files.c */
-void wm_history_file_read(void);
-int wm_homefile_read(
+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_userdef,
const char *filepath_startup_override, const char *app_template_override);