diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 004d77a237..a7a8bab903 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-09-07 09:30 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbqt/qtcore/hbqt_hbslots.cpp + ! Minor typo. + 2010-09-07 01:05 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbxbp/hbpprocess.prg + Prepared to route stdOut and stdErr outputs accordingly. diff --git a/harbour/contrib/hbqt/qtcore/hbqt_hbslots.cpp b/harbour/contrib/hbqt/qtcore/hbqt_hbslots.cpp index e702a1809c..6964e48315 100644 --- a/harbour/contrib/hbqt/qtcore/hbqt_hbslots.cpp +++ b/harbour/contrib/hbqt/qtcore/hbqt_hbslots.cpp @@ -248,7 +248,7 @@ static bool connect_signal( QString signal, QObject * object, HBSlots * t_slots /* QDateTimeEdit */ if( signal == ( QString ) "dateChanged(QDate)" ) return object->connect( object, SIGNAL( dateChanged( const QDate & ) ), t_slots, SLOT( dateChanged( const QDate & ) ), Qt::AutoConnection ); if( signal == ( QString ) "dateTimeChanged(QDateTime)" ) return object->connect( object, SIGNAL( dateTimeChanged( const QDateTime & ) ), t_slots, SLOT( dateTimeChanged( const QDateTime & ) ), Qt::AutoConnection ); - if( signal == ( QString ) "timeChanged(QTime)" ) return object->connect( object, SIGNAL( timeChanged( const QTime & ) ), t_slots, SLOT( dateTimeChanged( const QDateTime & ) ), Qt::AutoConnection ); + if( signal == ( QString ) "timeChanged(QTime)" ) return object->connect( object, SIGNAL( timeChanged( const QTime & ) ), t_slots, SLOT( timeChanged( const QTime & ) ), Qt::AutoConnection ); /* New */ return false; }