uxtheme: Turn a variable and a constant into static constants.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6a1a2e8288
commit
53c8abbf8a
|
@ -165,9 +165,7 @@ HRESULT WINAPI GetThemeSysInt(HTHEME hTheme, int iIntID, int *piValue)
|
|||
*/
|
||||
int WINAPI GetThemeSysSize(HTHEME hTheme, int iSizeID)
|
||||
{
|
||||
PTHEME_PROPERTY tp;
|
||||
int i, id = -1;
|
||||
int metricMap[] = {
|
||||
static const int metricMap[] = {
|
||||
SM_CXVSCROLL, TMT_SCROLLBARWIDTH,
|
||||
SM_CYHSCROLL, TMT_SCROLLBARHEIGHT,
|
||||
SM_CXSIZE, TMT_CAPTIONBARWIDTH,
|
||||
|
@ -179,6 +177,8 @@ int WINAPI GetThemeSysSize(HTHEME hTheme, int iSizeID)
|
|||
SM_CXMENUSIZE, TMT_MENUBARWIDTH,
|
||||
SM_CYMENUSIZE, TMT_MENUBARHEIGHT
|
||||
};
|
||||
PTHEME_PROPERTY tp;
|
||||
int i, id = -1;
|
||||
|
||||
if(hTheme) {
|
||||
for(i=0; i<ARRAY_SIZE(metricMap); i+=2) {
|
||||
|
|
|
@ -813,7 +813,7 @@ HRESULT WINAPI GetThemeDocumentationProperty(LPCWSTR pszThemeName,
|
|||
LPWSTR pszValueBuff,
|
||||
int cchMaxValChars)
|
||||
{
|
||||
const WORD wDocToRes[] = {
|
||||
static const WORD wDocToRes[] = {
|
||||
TMT_DISPLAYNAME,5000,
|
||||
TMT_TOOLTIP,5001,
|
||||
TMT_COMPANY,5002,
|
||||
|
|
Loading…
Reference in New Issue