Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_resources.h
| Show All 32 Lines | |||||
| typedef enum { | typedef enum { | ||||
| /* ui */ | /* ui */ | ||||
| #include "UI_icons.h" | #include "UI_icons.h" | ||||
| BIFICONID_LAST, | BIFICONID_LAST, | ||||
| } BIFIconID; | } BIFIconID; | ||||
| #define BIFICONID_FIRST (ICON_NONE) | #define BIFICONID_FIRST (ICON_NONE) | ||||
| #define ICON_SMALL_TRI_RIGHT_VEC (ICON_RIGHTARROW) /* No longer used (see D13106). */ | |||||
HooglyBoogly: This is a small thing, and a bit nitpicky.
I don't think it's necessary to link the revision… | |||||
| /* use to denote intentionally unset theme color */ | /* use to denote intentionally unset theme color */ | ||||
| #define TH_UNDEFINED -1 | #define TH_UNDEFINED -1 | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| ▲ Show 20 Lines • Show All 410 Lines • Show Last 20 Lines | |||||
This is a small thing, and a bit nitpicky.
I don't think it's necessary to link the revision here, just adding something like /* Removed icon no longer used, but defined so that addons don't have to be updated. */ should do it.
Generally, comments should explain the current state of the code. The "history" can be left to the commit messages and git blame.