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:
authorJoseph Eagar <joeedh@gmail.com>2009-04-20 00:09:31 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-04-20 00:09:31 +0400
commit514654009570cba78e5215f524714adf5f91812a (patch)
treeb212b35515ab92ae9f620c886cf6b589c4845361 /source/blender/makesrna/intern/rna_ui.c
parentf1979f45ec3fdfdc1e0faa807ee8c5595dd6b82e (diff)
changed some {} to {0}, these were causing errors on msvc. also got rid of some spurious prototypes I forgot to get rid off.
Diffstat (limited to 'source/blender/makesrna/intern/rna_ui.c')
-rw-r--r--source/blender/makesrna/intern/rna_ui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c
index c0b4fd28892..4ad5273dd5d 100644
--- a/source/blender/makesrna/intern/rna_ui.c
+++ b/source/blender/makesrna/intern/rna_ui.c
@@ -132,8 +132,8 @@ static void rna_Panel_unregister(const bContext *C, StructRNA *type)
static StructRNA *rna_Panel_register(const bContext *C, ReportList *reports, void *data, StructValidateFunc validate, StructCallbackFunc call, StructFreeFunc free)
{
ARegionType *art;
- PanelType *pt, dummypt = {};
- Panel dummypanel= {};
+ PanelType *pt, dummypt = {0};
+ Panel dummypanel= {0};
PointerRNA dummyptr;
int have_function[2];
@@ -224,8 +224,8 @@ static void rna_Header_unregister(const bContext *C, StructRNA *type)
static StructRNA *rna_Header_register(const bContext *C, ReportList *reports, void *data, StructValidateFunc validate, StructCallbackFunc call, StructFreeFunc free)
{
ARegionType *art;
- HeaderType *ht, dummyht = {};
- Header dummyheader= {};
+ HeaderType *ht, dummyht = {0};
+ Header dummyheader= {0};
PointerRNA dummyhtr;
int have_function[1];