2010-01-03 13:40 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* ChangeLog
    ! Fixed accindentally committed corrupted file in prev commit.
      (unclean system shutdowns due to hangs)

  * contrib/hbqt/tests/demoqt.prg
    * Variable rename.
This commit is contained in:
Viktor Szakats
2010-01-03 12:43:59 +00:00
parent 74ed8d750b
commit d2c818eab8
2 changed files with 24557 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@@ -85,21 +85,21 @@
#include "common.ch"
STATIC qApp
REQUEST HB_QT
STATIC s_qApp
STATIC s_events
STATIC s_slots
/*----------------------------------------------------------------------*/
INIT PROCEDURE Qt_Start()
qApp := QApplication():new()
s_qApp := QApplication():new()
RETURN
EXIT PROCEDURE Qt_End()
qApp:quit()
s_qApp:quit()
RETURN
/*----------------------------------------------------------------------*/
@@ -172,9 +172,9 @@ HBQT_DEBUG( "-----------------b-----------------" )
oWnd:Show()
qApp:exec()
s_qApp:exec()
HBQT_DEBUG( "----------------- qApp:exec -----------------" )
HBQT_DEBUG( "----------------- s_qApp:exec -----------------" )
HbQt_Set_Release_Method( HBQT_RELEASE_WITH_DELETE )
HBQT_DEBUG( "HbQt_Set_Release_Method SET : HBQT_RELEASE_WITH_DELETE" )