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:
authorJoshua Leung <aligorith@gmail.com>2010-02-01 02:07:32 +0300
committerJoshua Leung <aligorith@gmail.com>2010-02-01 02:07:32 +0300
commitaafe6e2d9c4af7c2e47ce6bc13a45c91d8e17066 (patch)
treee525f346c3106795417911b8f6c149e60c15afe5 /source/blender/editors/space_buttons
parentf776303de1b95308d11e6f5ac139a532224e5989 (diff)
Renamed the FILE_OPEN option for the file browser to FILE_OPENFILE to cleanup compiler warnings about redefined definitions (mingw)
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/buttons_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/buttons_ops.c b/source/blender/editors/space_buttons/buttons_ops.c
index 406ecd77136..a5e708e90e3 100644
--- a/source/blender/editors/space_buttons/buttons_ops.c
+++ b/source/blender/editors/space_buttons/buttons_ops.c
@@ -148,6 +148,6 @@ void BUTTONS_OT_file_browse(wmOperatorType *ot)
ot->cancel= file_browse_cancel;
/* properties */
- WM_operator_properties_filesel(ot, 0, FILE_SPECIAL, FILE_OPEN);
+ WM_operator_properties_filesel(ot, 0, FILE_SPECIAL, FILE_OPENFILE);
}