diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 5836b2e8d8..65c976aafd 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,15 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-12-10 15:59 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbqt/hbqt_slots.cpp + * contrib/hbxbp/xbpgeneric.prg + * Rename: QT_QEVENTFILTER() -> QT_GETEVENTFILTER(). + There will be some more renames to cleanup prefix usage. + + * contrib/hbwin/win_regc.c + * Minor formatting. + 2009-12-10 15:40 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * hbwin/win_misc.c * hbwin/win_prn1.c diff --git a/harbour/contrib/hbqt/hbqt_slots.cpp b/harbour/contrib/hbqt/hbqt_slots.cpp index 7a01da9c1a..b468b115a4 100644 --- a/harbour/contrib/hbqt/hbqt_slots.cpp +++ b/harbour/contrib/hbqt/hbqt_slots.cpp @@ -123,16 +123,16 @@ HB_FUNC( QT_SETEVENTFILTER ) qt_setEventFilter(); } +HB_FUNC( QT_GETEVENTFILTER ) +{ + hb_retptr( qt_getEventFilter() ); +} + HB_FUNC( QT_SETEVENTSLOTS ) { qt_setEventSlots(); } -HB_FUNC( QT_QEVENTFILTER ) -{ - hb_retptr( qt_getEventFilter() ); -} - /*----------------------------------------------------------------------*/ Slots::Slots( QObject* parent ) : QObject( parent ) diff --git a/harbour/contrib/hbwin/win_regc.c b/harbour/contrib/hbwin/win_regc.c index 9260991ef0..b43cf33ea7 100644 --- a/harbour/contrib/hbwin/win_regc.c +++ b/harbour/contrib/hbwin/win_regc.c @@ -132,7 +132,9 @@ HB_FUNC( WIN_REGQUERYVALUEEX ) { if( dwSize > 0 ) { - if( dwType == REG_SZ || dwType == REG_EXPAND_SZ || dwType == REG_MULTI_SZ ) + if( dwType == REG_SZ || + dwType == REG_EXPAND_SZ || + dwType == REG_MULTI_SZ ) { LPTSTR lpValue = ( LPTSTR ) hb_xgrab( ( dwSize + 1 ) * sizeof( TCHAR ) ); diff --git a/harbour/contrib/hbxbp/xbpgeneric.prg b/harbour/contrib/hbxbp/xbpgeneric.prg index a58dcaf42d..fc4074598b 100644 --- a/harbour/contrib/hbxbp/xbpgeneric.prg +++ b/harbour/contrib/hbxbp/xbpgeneric.prg @@ -153,7 +153,7 @@ FUNCTION hbxbp_ClearEventBuffer() FUNCTION hbxbp_SetEventFilter() - RETURN QT_QEventFilter() + RETURN QT_GetEventFilter() /*----------------------------------------------------------------------*/