Francois Gouget : win32u: Fix the spelling of a variable name.

Alexandre Julliard julliard at winehq.org
Mon Jul 18 15:47:03 CDT 2022


Module: wine
Branch: master
Commit: 7040cf17ff7ca3731d012adaa63ab4de22858425
URL:    https://gitlab.winehq.org/wine/wine/-/commit/7040cf17ff7ca3731d012adaa63ab4de22858425

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Jul  9 15:59:25 2022 +0200

win32u: Fix the spelling of a variable name.

Signed-off-by: Francois Gouget <fgouget at free.fr>

---

 dlls/win32u/menu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/win32u/menu.c b/dlls/win32u/menu.c
index c67d0e00615..2530c04241c 100644
--- a/dlls/win32u/menu.c
+++ b/dlls/win32u/menu.c
@@ -159,7 +159,7 @@ static HMENU top_popup_hmenu;
 static BOOL exit_menu = FALSE;
 
 static SIZE menucharsize;
-static UINT od_item_hight; /* default owner drawn item height */
+static UINT od_item_height; /* default owner drawn item height */
 
 /**********************************************************************
  *           NtUserCopyAcceleratorTable   (win32u.@)
@@ -1986,7 +1986,7 @@ static void calc_menu_item_size( HDC hdc, struct menu_item *item, HWND owner, IN
         menucharsize.cx = get_char_dimensions( hdc, NULL, &menucharsize.cy );
         /* Win95/98/ME will use menucharsize.cy here. Testing is possible
          * but it is unlikely an application will depend on that */
-        od_item_hight = HIWORD( get_dialog_base_units() );
+        od_item_height = HIWORD( get_dialog_base_units() );
     }
 
     SetRect( &item->rect, org_x, org_y, org_x, org_y );
@@ -1998,7 +1998,7 @@ static void calc_menu_item_size( HDC hdc, struct menu_item *item, HWND owner, IN
         mis.CtlID      = 0;
         mis.itemID     = item->wID;
         mis.itemData   = item->dwItemData;
-        mis.itemHeight = od_item_hight;
+        mis.itemHeight = od_item_height;
         mis.itemWidth  = 0;
         send_message( owner, WM_MEASUREITEM, 0, (LPARAM)&mis );
         /* Tests reveal that Windows ( Win95 through WinXP) adds twice the average




More information about the wine-cvs mailing list