# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1322348133 0 # Node ID eb83c9830dfab92576bbf6100fc52eccb35a3dca # Parent 943266c86aedc210a5e435ed83fa15f9225d5593 Compile fixes for that last commit on OS/2. diff -r 943266c86aed -r eb83c9830dfa os2/dw.c --- a/os2/dw.c Sat Nov 26 22:47:20 2011 +0000 +++ b/os2/dw.c Sat Nov 26 22:55:33 2011 +0000 @@ -3828,7 +3828,7 @@ POINTL txtPointl[TXTBOX_COUNT]; POINTL ptlWork = {0,0}; ULONG ulColor = CLR_YELLOW; - void *blah; + void *bubbleproc; hwndBubbleLast = hwnd; hwndBubble = WinCreateWindow(HWND_DESKTOP, @@ -3876,10 +3876,10 @@ ptlWork.y -= lHight; - blah = (void *)WinSubclassWindow(hwndBubble, _BubbleProc); - - if(blah) - WinSetWindowPtr(hwndBubble, QWP_USER, blah); + bubbleproc = (void *)WinSubclassWindow(hwndBubble, _BubbleProc); + + if(bubbleproc) + WinSetWindowPtr(hwndBubble, QWP_USER, bubbleproc); WinSetWindowPos(hwndBubble, HWND_TOP, @@ -5639,7 +5639,7 @@ strncpy(blah->bubbletext, text, BUBBLE_HELP_MAX - 1); blah->bubbletext[BUBBLE_HELP_MAX - 1] = '\0'; - blah->old = WinSubclassWindow(tmp, _BtProc); + blah->oldproc = WinSubclassWindow(tmp, _BtProc); WinSetWindowPtr(tmp, QWP_USER, blah);