diff --git a/harbour/ChangeLog b/harbour/ChangeLog index aff8e0dfbb..2b694839b1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-10-13 09:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbide/idesaveload.prg + ! Fixed: GPF reported by Maurizio. + 2010-10-13 13:21 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/rtl/gttrm/gttrm.c ! added protection against GPF when wrong parameters are diff --git a/harbour/contrib/hbide/idesaveload.prg b/harbour/contrib/hbide/idesaveload.prg index ed24186b2f..7c7af8e7c0 100644 --- a/harbour/contrib/hbide/idesaveload.prg +++ b/harbour/contrib/hbide/idesaveload.prg @@ -1663,7 +1663,7 @@ METHOD IdeSetup:viewIt( cFileName, lSaveAs, lSave, lReadOnly, lApplyHiliter ) LOCAL oUI oUI := hbide_getUI( "editor", ::oUI:oWidget ) - oUI:setWindowFlags( Qt_Sheet ) + oUI:setWindowFlags( Qt_Sheet + Qt_CustomizeWindowHint + Qt_WindowTitleHint + Qt_WindowContextHelpButtonHint ) oUI:q_plainText:setReadOnly( lReadOnly ) oUI:q_buttonSaveAs:setEnabled( lSaveAs )