== UI icons ==

* Change ICON_NULL --> ICON_NONE to avoid two #defines with the same meaning.
This commit is contained in:
2011-02-27 18:03:19 +00:00
parent 7a4ca6a36d
commit 4ed5cd6cef
46 changed files with 864 additions and 852 deletions

View File

@@ -144,12 +144,12 @@ int uiDefAutoButsRNA(uiLayout *layout, PointerRNA *ptr, int (*check_prop)(Proper
if(label_align=='V') {
col= uiLayoutColumn(layout, 1);
uiItemL(col, name, ICON_NULL);
uiItemL(col, name, ICON_NONE);
}
else if(label_align=='H') {
split = uiLayoutSplit(layout, 0.5f, 0);
uiItemL(uiLayoutColumn(split, 0), name, ICON_NULL);
uiItemL(uiLayoutColumn(split, 0), name, ICON_NONE);
col= uiLayoutColumn(split, 0);
}
else {
@@ -170,7 +170,7 @@ int uiDefAutoButsRNA(uiLayout *layout, PointerRNA *ptr, int (*check_prop)(Proper
name= NULL; /* no smart label alignment, show default name with button */
}
uiItemFullR(col, ptr, prop, -1, 0, 0, name, ICON_NULL);
uiItemFullR(col, ptr, prop, -1, 0, 0, name, ICON_NONE);
tot++;
}
RNA_STRUCT_END;
@@ -187,7 +187,7 @@ int uiIconFromID(ID *id)
short idcode;
if(id==NULL)
return ICON_NULL;
return ICON_NONE;
idcode= GS(id->name);
@@ -205,5 +205,5 @@ int uiIconFromID(ID *id)
will set the right type, also with subclassing */
RNA_id_pointer_create(id, &ptr);
return (ptr.type)? RNA_struct_ui_icon(ptr.type) : ICON_NULL;
return (ptr.type)? RNA_struct_ui_icon(ptr.type) : ICON_NONE;
}