2010-10-29 09:37 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbqt/qtcore/hbqt_misc.prg
    * Changed to not RTE when connecting to an already connected event.
      It will now return .F.. This emulates old behavior.
This commit is contained in:
Viktor Szakats
2010-10-29 07:37:30 +00:00
parent 0c6075fd5c
commit 1d88e6f2f5
2 changed files with 7 additions and 0 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-10-29 09:37 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/qtcore/hbqt_misc.prg
* Changed to not RTE when connecting to an already connected event.
It will now return .F.. This emulates old behavior.
2010-10-29 01:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/qtgui/hbqt_init.cpp
* contrib/hbqt/qtwebkit/hbqt_init.cpp

View File

@@ -151,6 +151,8 @@ METHOD HbQtObjectHandler:connect( cnEvent, bBlock )
SWITCH nResult
CASE 0
RETURN .T.
CASE -3 /* event already connected */
RETURN .F.
ENDSWITCH
EXIT