changeset 1393:eb83c9830dfa

Compile fixes for that last commit on OS/2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 26 Nov 2011 22:55:33 +0000
parents 943266c86aed
children a151d45a7041
files os2/dw.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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);