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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-01-02 17:48:03 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-01-02 17:48:03 +0300
commit6b73bc9b0636e798b1465eb946f3e612f2ff111a (patch)
tree4f0e4f84156de52d4ea0853ad3e4b24d56d8b980 /source/blender/editors
parent70fe6664568b95ce98507d2d5e23a8c800e66f25 (diff)
RNA
* Finished last Lattice properties, is done now. * Some tweaks to Mesh structs naming.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_outliner/outliner.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c
index 6f970105f87..8f771ddf708 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -3168,15 +3168,15 @@ static int tselem_rna_icon(PointerRNA *ptr)
return ICON_OBJECT;
else if(rnatype == &RNA_Mesh)
return ICON_MESH;
- else if(rnatype == &RNA_MVert)
+ else if(rnatype == &RNA_MeshVertex)
return ICON_VERTEXSEL;
- else if(rnatype == &RNA_MEdge)
+ else if(rnatype == &RNA_MeshEdge)
return ICON_EDGESEL;
- else if(rnatype == &RNA_MFace)
+ else if(rnatype == &RNA_MeshFace)
return ICON_FACESEL;
- else if(rnatype == &RNA_MTFace)
+ else if(rnatype == &RNA_MeshTextureFace)
return ICON_FACESEL_HLT;
- else if(rnatype == &RNA_MVertGroup)
+ else if(rnatype == &RNA_MeshVertexGroup)
return ICON_VGROUP;
else if(rnatype == &RNA_Curve)
return ICON_CURVE;