2012-06-04 13:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/gtwvg/wvgwing.c
    ! Fixed: (probably) 64 bit warning reported on the list.
This commit is contained in:
Pritpal Bedi
2012-06-04 20:29:33 +00:00
parent f6454abbd2
commit d6512e374a
2 changed files with 8 additions and 3 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-06-04 13:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/wvgwing.c
! Fixed: (probably) 64 bit warning reported on the list.
2012-06-04 19:36 UTC+0200 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
+ use HB_DEFAULT()

View File

@@ -1229,11 +1229,12 @@ HB_FUNC( WVG_CREATETOOLTIPWINDOW )
TOOLINFO toolInfo;
hwndTip = CreateWindowEx( ( DWORD ) NULL, TOOLTIPS_CLASS, NULL,
WS_POPUP |TTS_ALWAYSTIP, // | TTS_BALLOON,
WS_POPUP | TTS_ALWAYSTIP, // | TTS_BALLOON,
CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT,
wvg_parhwnd( 1 ), NULL,
wvg_hInstance(), NULL);
wvg_parhwnd( 1 ), ( HMENU ) NULL,
( HINSTANCE ) wvg_hInstance(),
( LPVOID ) NULL);
if( ! hwndTip )
return;