2009-12-19 23:39 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbqt/tests/demoqt.prg
    ! Fixed to use :pPtr instead of now dummy QT_PTROF() macro.
This commit is contained in:
Viktor Szakats
2009-12-19 22:44:00 +00:00
parent 48b261587e
commit 8c4cb30916
2 changed files with 5 additions and 2 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-12-19 23:39 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/tests/demoqt.prg
! Fixed to use :pPtr instead of now dummy QT_PTROF() macro.
2009-12-19 13:54 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/hbide.prg
! Made functional <Properties Dialog> based on XbpQtUiLoader() class.

View File

@@ -650,7 +650,7 @@ STATIC FUNCTION Dialogs( cType )
oDlg := QWebView():new()
oUrl := QUrl():new()
oUrl:setUrl( "http://www.harbour.vouch.info" )
QT_QWebView_SetUrl( QT_PTROF( oDlg ), QT_PTROF( oUrl ) )
QT_QWebView_SetUrl( oDlg:pPtr, oUrl:pPtr )
oDlg:setWindowTitle( "Harbour-QT Web Page Navigator" )
oDlg:exec()
#endif
@@ -934,4 +934,3 @@ FUNCTION ShowInSystemTray( oWnd )
RETURN nil
/*----------------------------------------------------------------------*/