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/editors
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/editors')
-rw-r--r--source/blender/editors/include/ED_mesh.h5
-rw-r--r--source/blender/editors/interface/interface_layout.c2
2 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h
index e7c5c7aaf95..6dff4ee6ca4 100644
--- a/source/blender/editors/include/ED_mesh.h
+++ b/source/blender/editors/include/ED_mesh.h
@@ -84,11 +84,6 @@ void ED_keymap_mesh(struct wmWindowManager *wm);
/* editmesh.c */
-/*accessor functions for editmesh, all access to editmesh must
- go through them!*/
-struct EditMesh *BKE_mesh_get_editmesh(struct Mesh *me);
-void BKE_mesh_end_editmesh(struct Mesh *me, struct EditMesh *em);
-
void ED_spacetypes_init(void);
void ED_keymap_mesh(struct wmWindowManager *wm);
diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c
index df17743d96a..e0059041774 100644
--- a/source/blender/editors/interface/interface_layout.c
+++ b/source/blender/editors/interface/interface_layout.c
@@ -1262,7 +1262,7 @@ void uiRegionHeaderLayout(const bContext *C, ARegion *ar)
uiBlock *block;
uiLayout *layout;
HeaderType *ht;
- Header header = {};
+ Header header = {0};
float col[3];
int xco, yco;