Commit 2061bf5f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

comctl32: Constify some variables.

parent fa10d003
...@@ -758,7 +758,7 @@ static HIMAGELIST COMBOEX_SetImageList (COMBOEX_INFO *infoPtr, HIMAGELIST himl) ...@@ -758,7 +758,7 @@ static HIMAGELIST COMBOEX_SetImageList (COMBOEX_INFO *infoPtr, HIMAGELIST himl)
return himlTemp; return himlTemp;
} }
static BOOL COMBOEX_SetItemW (const COMBOEX_INFO *infoPtr, COMBOBOXEXITEMW *cit) static BOOL COMBOEX_SetItemW (const COMBOEX_INFO *infoPtr, const COMBOBOXEXITEMW *cit)
{ {
INT_PTR index = cit->iItem; INT_PTR index = cit->iItem;
CBE_ITEMDATA *item; CBE_ITEMDATA *item;
......
...@@ -1368,7 +1368,7 @@ DATETIME_Destroy (DATETIME_INFO *infoPtr) ...@@ -1368,7 +1368,7 @@ DATETIME_Destroy (DATETIME_INFO *infoPtr)
static INT static INT
DATETIME_GetText (DATETIME_INFO *infoPtr, INT count, LPWSTR dst) DATETIME_GetText (const DATETIME_INFO *infoPtr, INT count, LPWSTR dst)
{ {
WCHAR buf[80]; WCHAR buf[80];
int i; int i;
......
...@@ -1215,7 +1215,7 @@ HEADER_GetOrderArray(const HEADER_INFO *infoPtr, INT size, LPINT order) ...@@ -1215,7 +1215,7 @@ HEADER_GetOrderArray(const HEADER_INFO *infoPtr, INT size, LPINT order)
/* Returns index of first duplicate 'value' from [0,to) range, /* Returns index of first duplicate 'value' from [0,to) range,
or -1 if there isn't any */ or -1 if there isn't any */
static INT has_duplicate(INT *array, INT to, INT value) static INT has_duplicate(const INT *array, INT to, INT value)
{ {
INT i; INT i;
for(i = 0; i < to; i++) for(i = 0; i < to; i++)
...@@ -1224,7 +1224,7 @@ static INT has_duplicate(INT *array, INT to, INT value) ...@@ -1224,7 +1224,7 @@ static INT has_duplicate(INT *array, INT to, INT value)
} }
/* returns next available value from [0,max] not to duplicate in [0,to) */ /* returns next available value from [0,max] not to duplicate in [0,to) */
static INT get_nextvalue(INT *array, INT to, INT max) static INT get_nextvalue(const INT *array, INT to, INT max)
{ {
INT i; INT i;
for(i = 0; i < max; i++) for(i = 0; i < max; i++)
......
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