diff --git a/harbour/ChangeLog b/harbour/ChangeLog index cd8fe12618..22ac5bb4bd 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,12 @@ The license applies to all entries newer than 2009-04-28. */ +2012-05-26 12:12 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbqt/qtcore/hbqt_pointer.cpp + ! Changed: HB_FUNC( SIGNAL2SLOT ) => HB_FUNC( HBQT_CONNECT ) + * contrib/hbqt/tests/signalslots.prg + * Applied above change. + 2012-05-25 18:36 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbqt/qtcore/qth/QObject.qth + Uncommented: method QList children() const. diff --git a/harbour/contrib/hbqt/qtcore/hbqt_pointer.cpp b/harbour/contrib/hbqt/qtcore/hbqt_pointer.cpp index 638d0e8333..e73b397048 100644 --- a/harbour/contrib/hbqt/qtcore/hbqt_pointer.cpp +++ b/harbour/contrib/hbqt/qtcore/hbqt_pointer.cpp @@ -501,7 +501,7 @@ int hbqt_QtConnect( QObject *sender, const char * pszSignal, QObject *receiver, return nResult; } -HB_FUNC( SIGNAL2SLOT ) +HB_FUNC( HBQT_CONNECT ) { HB_BOOL ret = HB_FALSE; diff --git a/harbour/contrib/hbqt/tests/signalslots.prg b/harbour/contrib/hbqt/tests/signalslots.prg index 0652c4e7b1..fa870d9b46 100644 --- a/harbour/contrib/hbqt/tests/signalslots.prg +++ b/harbour/contrib/hbqt/tests/signalslots.prg @@ -28,7 +28,7 @@ PROCEDURE main() oLayout:addWidget( oScrollBar ) oLayout:addWidget( oLabel ) - SIGNAL2SLOT( oScrollBar, "valueChanged(int)", oLabel, "setNum(int)" ) + hbqt_Connect( oScrollBar, "valueChanged(int)", oLabel, "setNum(int)" ) oMain:show()