comctl32: Make some data const.
This commit is contained in:
parent
1804900163
commit
bd53138fc8
|
@ -295,7 +295,7 @@ static LRESULT REBAR_NotifyFormat(REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lPa
|
|||
static UINT mindragx = 0;
|
||||
static UINT mindragy = 0;
|
||||
|
||||
static const char *band_stylename[] = {
|
||||
static const char * const band_stylename[] = {
|
||||
"RBBS_BREAK", /* 0001 */
|
||||
"RBBS_FIXEDSIZE", /* 0002 */
|
||||
"RBBS_CHILDEDGE", /* 0004 */
|
||||
|
@ -307,7 +307,7 @@ static const char *band_stylename[] = {
|
|||
"RBBS_NOGRIPPER", /* 0100 */
|
||||
NULL };
|
||||
|
||||
static const char *band_maskname[] = {
|
||||
static const char * const band_maskname[] = {
|
||||
"RBBIM_STYLE", /* 0x00000001 */
|
||||
"RBBIM_COLORS", /* 0x00000002 */
|
||||
"RBBIM_TEXT", /* 0x00000004 */
|
||||
|
|
Loading…
Reference in New Issue