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.
This commit is contained in:
Viktor Szakats
2009-12-10 15:00:30 +00:00
parent ab407cc082
commit 03345c6143
4 changed files with 18 additions and 7 deletions

View File

@@ -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

View File

@@ -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 )

View File

@@ -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 ) );

View File

@@ -153,7 +153,7 @@ FUNCTION hbxbp_ClearEventBuffer()
FUNCTION hbxbp_SetEventFilter()
RETURN QT_QEventFilter()
RETURN QT_GetEventFilter()
/*----------------------------------------------------------------------*/