2011-05-24 14:13 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/gtwvg/wvgcore.c
    ! Fixed: wrongly handelled WM_CLOSE message in modal/modeless
      dialogs. The fact is reported by  Zoran Sibinovic.
This commit is contained in:
Pritpal Bedi
2011-05-24 21:16:33 +00:00
parent ff9138a724
commit 70de0f3608
2 changed files with 5 additions and 9 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-05-24 14:13 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/wvgcore.c
! Fixed: wrongly handelled WM_CLOSE message in modal/modeless
dialogs. The fact is reported by Zoran Sibinovic.
2011-05-24 11:59 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/arc4.c
! changed size parameter passed by reference to sysctl() to size_t

View File

@@ -439,10 +439,6 @@ BOOL CALLBACK hb_wvt_gtDlgProcMLess( HWND hDlg, UINT message, WPARAM wParam, LPA
}
break;
case WM_CLOSE:
DestroyWindow( hDlg );
lReturn = 0;
break;
#if ! defined( HB_OS_WIN_CE )
case WM_NCDESTROY:
#else
@@ -556,11 +552,6 @@ BOOL CALLBACK hb_wvt_gtDlgProcModal( HWND hDlg, UINT message, WPARAM wParam, LPA
}
break;
case WM_CLOSE:
EndDialog( hDlg, IDCANCEL );
lReturn = 0;
break;
#if ! defined( HB_OS_WIN_CE )
case WM_NCDESTROY:
#else