Commit bd53138f authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

comctl32: Make some data const.

parent 18049001
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment