diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 52c1c4cf0c..309b9b82af 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ * fixed <-x-> match marker +2006-02-07 18:20 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu) + * source/vm/mainwin.c + ! Fixed previous commit. + 2006-02-07 12:20 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu) * makefile.bc + Updated for latest changes. diff --git a/harbour/source/vm/mainwin.c b/harbour/source/vm/mainwin.c index 6de2fccba0..f27a8cf58d 100644 --- a/harbour/source/vm/mainwin.c +++ b/harbour/source/vm/mainwin.c @@ -73,6 +73,8 @@ int WINAPI WinMain( HINSTANCE hInstance, /* handle to current instance */ LONG WINAPI hb_UnhandledExceptionFilter( struct _EXCEPTION_POINTERS * ExceptionInfo ); LPTOP_LEVEL_EXCEPTION_FILTER ef = SetUnhandledExceptionFilter( hb_UnhandledExceptionFilter ); + + HB_SYMBOL_UNUSED( ef ); #endif LPSTR pArgs = ( LPSTR ) LocalAlloc( LMEM_FIXED, strlen( lpCmdLine ) + 1 ), pArg = pArgs; @@ -84,7 +86,6 @@ int WINAPI WinMain( HINSTANCE hInstance, /* handle to current instance */ HB_SYMBOL_UNUSED( hPrevInstance ); HB_SYMBOL_UNUSED( iCmdShow ); - HB_SYMBOL_UNUSED( ef ); hb_hInstance = hInstance; GetModuleFileName( hInstance, szAppName, 249 );