Spelling fixes.
This commit is contained in:
parent
f8e4fb0888
commit
f4185f63d0
|
@ -1765,7 +1765,7 @@ TAB_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
return TAB_InsertItem (hwnd, wParam, lParam);
|
return TAB_InsertItem (hwnd, wParam, lParam);
|
||||||
|
|
||||||
case TCM_INSERTITEMW:
|
case TCM_INSERTITEMW:
|
||||||
FIXME("Unimplemented msg TCM_INSERTITEM32W\n");
|
FIXME("Unimplemented msg TCM_INSERTITEMW\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case TCM_SETITEMEXTRA:
|
case TCM_SETITEMEXTRA:
|
||||||
|
|
|
@ -29,7 +29,7 @@ DECLARE_DEBUG_CHANNEL(relay)
|
||||||
DECLARE_DEBUG_CHANNEL(win)
|
DECLARE_DEBUG_CHANNEL(win)
|
||||||
|
|
||||||
/* Window procedure 16-to-32-bit thunk,
|
/* Window procedure 16-to-32-bit thunk,
|
||||||
* see BuildSpec16Files() in tools/build.c */
|
* see BuildSpec16File() in tools/build.c */
|
||||||
|
|
||||||
#include "pshpack1.h"
|
#include "pshpack1.h"
|
||||||
typedef struct
|
typedef struct
|
||||||
|
@ -49,7 +49,7 @@ typedef struct
|
||||||
#include "poppack.h"
|
#include "poppack.h"
|
||||||
|
|
||||||
/* Window procedure 32-to-16-bit thunk,
|
/* Window procedure 32-to-16-bit thunk,
|
||||||
* see BuildSpec32Files() in tools/build.c */
|
* see BuildSpec32File() in tools/build.c */
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
|
@ -468,7 +468,7 @@ void X11DRV_WND_ForceWindowRaise(WND *wndPtr)
|
||||||
* X11DRV_WND_FindDesktopXWindow [Internal]
|
* X11DRV_WND_FindDesktopXWindow [Internal]
|
||||||
*
|
*
|
||||||
* Find the actual X window which needs be restacked.
|
* Find the actual X window which needs be restacked.
|
||||||
* Used by X11DRV_SetWindowPos().
|
* Used by X11DRV_WND_SetWindowPos().
|
||||||
*/
|
*/
|
||||||
static Window X11DRV_WND_FindDesktopXWindow( WND *wndPtr )
|
static Window X11DRV_WND_FindDesktopXWindow( WND *wndPtr )
|
||||||
{
|
{
|
||||||
|
@ -503,7 +503,7 @@ void X11DRV_WND_SetWindowPos(WND *wndPtr, const WINDOWPOS *winpos, BOOL bChangeP
|
||||||
WND *winposPtr = WIN_FindWndPtr( winpos->hwnd );
|
WND *winposPtr = WIN_FindWndPtr( winpos->hwnd );
|
||||||
if ( !winposPtr ) return;
|
if ( !winposPtr ) return;
|
||||||
|
|
||||||
if(!wndPtr->hwndSelf) wndPtr = NULL; /* FIXME: WND destroyed, shouldn't happend!!! */
|
if(!wndPtr->hwndSelf) wndPtr = NULL; /* FIXME: WND destroyed, shouldn't happen!!! */
|
||||||
|
|
||||||
if (!(winpos->flags & SWP_SHOWWINDOW) && (winpos->flags & SWP_HIDEWINDOW))
|
if (!(winpos->flags & SWP_SHOWWINDOW) && (winpos->flags & SWP_HIDEWINDOW))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue