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:
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;