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>2012-02-27 17:47:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 17:47:53 +0400
commite17bf02c2dcf6e51176eafc5bbe77171bc7014c5 (patch)
treed64b04687791c96d639458278c73110f804fa04a /source/blender/editors/include/ED_uvedit.h
parent08b35cda7fb903d4e6cf0f7e6b29024ee536f2b3 (diff)
Code Cleanup:
* made bmesh_structure.h function names more consistant. * remove unused code in bmesh_structure.c * removed 'Edge Flip' operator (missing from bmesh but looked into trunk feature and dont think its worth keeping). * tagged some BMESH_TODO's
Diffstat (limited to 'source/blender/editors/include/ED_uvedit.h')
-rw-r--r--source/blender/editors/include/ED_uvedit.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/source/blender/editors/include/ED_uvedit.h b/source/blender/editors/include/ED_uvedit.h
index 6c74eea3a5e..398dca1fe76 100644
--- a/source/blender/editors/include/ED_uvedit.h
+++ b/source/blender/editors/include/ED_uvedit.h
@@ -31,21 +31,20 @@
#define __ED_UVEDIT_H__
struct ARegionType;
-struct EditFace;
+struct BMEditMesh;
+struct BMFace;
+struct BMLoop;
struct Image;
-struct Main;
struct ImageUser;
struct MTFace;
+struct MTexPoly;
+struct Main;
struct Object;
struct Scene;
struct SpaceImage;
struct bContext;
struct bNode;
struct wmKeyConfig;
-struct BMEditMesh;
-struct BMLoop;
-struct BMFace;
-struct MTexPoly;
/* uvedit_ops.c */
void ED_operatortypes_uvedit(void);