Cleanup: naming and const parameter.

This commit is contained in:
Bastien Montagne 2018-03-16 16:44:23 +01:00
parent da4efaeb87
commit 67e2806dcb
2 changed files with 10 additions and 10 deletions

View File

@ -58,19 +58,19 @@ int BKE_icon_id_ensure(struct ID *id);
int BKE_icon_preview_ensure(struct ID *id, struct PreviewImage *preview);
/* retrieve icon for id */
struct Icon *BKE_icon_get(int icon_id);
struct Icon *BKE_icon_get(const int icon_id);
/* set icon for id if not already defined */
/* used for inserting the internal icons */
void BKE_icon_set(int icon_id, struct Icon *icon);
void BKE_icon_set(const int icon_id, struct Icon *icon);
/* remove icon and free data if library object becomes invalid */
void BKE_icon_id_delete(struct ID *id);
void BKE_icon_delete(int icon_id);
void BKE_icon_delete(const int icon_id);
/* report changes - icon needs to be recalculated */
void BKE_icon_changed(int icon_id);
void BKE_icon_changed(const int icon_id);
/* free all icons */
void BKE_icons_free(void);

View File

@ -431,13 +431,13 @@ void BKE_previewimg_ensure(PreviewImage *prv, const int size)
}
}
void BKE_icon_changed(int id)
void BKE_icon_changed(const int icon_id)
{
Icon *icon = NULL;
if (!id || G.background) return;
if (!icon_id || G.background) return;
icon = BLI_ghash_lookup(gIcons, SET_INT_IN_POINTER(id));
icon = BLI_ghash_lookup(gIcons, SET_INT_IN_POINTER(icon_id));
if (icon) {
PreviewImage *prv = BKE_previewimg_id_ensure((ID *)icon->obj);
@ -547,7 +547,7 @@ int BKE_icon_preview_ensure(ID *id, PreviewImage *preview)
return preview->icon_id;
}
Icon *BKE_icon_get(int icon_id)
Icon *BKE_icon_get(const int icon_id)
{
Icon *icon = NULL;
@ -561,7 +561,7 @@ Icon *BKE_icon_get(int icon_id)
return icon;
}
void BKE_icon_set(int icon_id, struct Icon *icon)
void BKE_icon_set(const int icon_id, struct Icon *icon)
{
void **val_p;
@ -584,7 +584,7 @@ void BKE_icon_id_delete(struct ID *id)
/**
* Remove icon and free data.
*/
void BKE_icon_delete(int icon_id)
void BKE_icon_delete(const int icon_id)
{
Icon *icon;