== UI icons ==

* Moved two #defines out of the enum to make code more readable.
This commit is contained in:
2011-02-27 17:50:12 +00:00
parent 7cc0cd7814
commit 7a4ca6a36d

View File

@@ -43,12 +43,14 @@
#define DEF_VICO(name) VICO_##name,
typedef enum {
#define BIFICONID_FIRST (ICON_NONE)
/* ui */
#include "UI_icons.h"
BIFICONID_LAST
#define BIFNICONIDS (BIFICONID_LAST-BIFICONID_FIRST + 1)
} BIFIconID;
#define BIFICONID_FIRST (ICON_NONE)
#define BIFNICONIDS (BIFICONID_LAST-BIFICONID_FIRST + 1)
#undef DEF_ICON
#undef DEF_VICO