2011-04-06 18:21 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbqt/qtcore/hbqt_hbqevents.cpp
    ! QEvent:Close now returns TRUE to the calling loop.
      Now this is the responsibility of the user code to 
      set an event to be accepted or ignored.
This commit is contained in:
Pritpal Bedi
2011-04-07 01:24:59 +00:00
parent c885d9b471
commit d3f42a28cc
2 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-04-06 18:21 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtcore/hbqt_hbqevents.cpp
! QEvent:Close now returns TRUE to the calling loop.
Now this is the responsibility of the user code to
set an event to be accepted or ignored.
2011-04-06 17:48 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/CREDITS.txt
! Updated: credits.

View File

@@ -232,7 +232,7 @@ bool HBQEvents::eventFilter( QObject * object, QEvent * event )
}
if( eventtype == QEvent::Close )
{
event->ignore();
return true;
}
}
}