2010-09-20 13:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

- contrib/hbqt/qtcore/g/THBEvents.prg
  + contrib/hbqt/qtcore/g/THBQEvents.prg
  - contrib/hbqt/qtcore/g/THBSlots.prg
  + contrib/hbqt/qtcore/g/THBQSlots.prg
    * Renamed. Missed from original commit.
This commit is contained in:
Viktor Szakats
2010-09-20 11:50:23 +00:00
parent 2a2dca2634
commit b370065f9d
3 changed files with 31 additions and 24 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-09-20 13:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- contrib/hbqt/qtcore/g/THBEvents.prg
+ contrib/hbqt/qtcore/g/THBQEvents.prg
- contrib/hbqt/qtcore/g/THBSlots.prg
+ contrib/hbqt/qtcore/g/THBQSlots.prg
* Renamed. Missed from original commit.
2010-09-20 13:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- contrib/hbqt/qtcore/g/THBQSlots.prg
- contrib/hbqt/qtcore/g/THBQEvents.prg

View File

@@ -63,11 +63,11 @@
#include "hbclass.ch"
FUNCTION HBEvents( ... )
RETURN HB_HBEvents():new( ... )
FUNCTION HBQEvents( ... )
RETURN HB_HBQEvents():new( ... )
CREATE CLASS HBEvents INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBEvents
CREATE CLASS HBQEvents INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBQEvents
METHOD new( ... )
@@ -78,23 +78,23 @@ CREATE CLASS HBEvents INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBEvents
ENDCLASS
METHOD HBEvents:new( ... )
METHOD HBQEvents:new( ... )
LOCAL p
FOR EACH p IN { ... }
hb_pvalue( p:__enumIndex(), hbqt_ptr( p ) )
NEXT
::pPtr := Qt_HBEvents( ... )
::pPtr := Qt_HBQEvents( ... )
RETURN Self
METHOD HBEvents:hbConnect( xObj, nEvent, xBlock )
RETURN Qt_HBEvents_hbConnect( ::pPtr, xObj, nEvent, xBlock )
METHOD HBQEvents:hbConnect( xObj, nEvent, xBlock )
RETURN Qt_HBQEvents_hbConnect( ::pPtr, xObj, nEvent, xBlock )
METHOD HBEvents:hbDisconnect( xObj, nEvent )
RETURN Qt_HBEvents_hbDisconnect( ::pPtr, xObj, nEvent )
METHOD HBQEvents:hbDisconnect( xObj, nEvent )
RETURN Qt_HBQEvents_hbDisconnect( ::pPtr, xObj, nEvent )
METHOD HBEvents:hbClear()
RETURN Qt_HBEvents_hbClear( ::pPtr )
METHOD HBQEvents:hbClear()
RETURN Qt_HBQEvents_hbClear( ::pPtr )

View File

@@ -63,11 +63,11 @@
#include "hbclass.ch"
FUNCTION HBSlots( ... )
RETURN HB_HBSlots():new( ... )
FUNCTION HBQSlots( ... )
RETURN HB_HBQSlots():new( ... )
CREATE CLASS HBSlots INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBSlots
CREATE CLASS HBQSlots INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBQSlots
METHOD new( ... )
@@ -79,27 +79,27 @@ CREATE CLASS HBSlots INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBSlots
ENDCLASS
METHOD HBSlots:new( ... )
METHOD HBQSlots:new( ... )
LOCAL p
FOR EACH p IN { ... }
hb_pvalue( p:__enumIndex(), hbqt_ptr( p ) )
NEXT
::pPtr := Qt_HBSlots( ... )
::pPtr := Qt_HBQSlots( ... )
RETURN Self
METHOD HBSlots:hbConnect( xPObj, pSlot, xBBlock )
RETURN Qt_HBSlots_hbConnect( ::pPtr, xPObj, hbqt_ptr( pSlot ), xBBlock )
METHOD HBQSlots:hbConnect( xPObj, pSlot, xBBlock )
RETURN Qt_HBQSlots_hbConnect( ::pPtr, xPObj, hbqt_ptr( pSlot ), xBBlock )
METHOD HBSlots:hbDisconnect( xObj, pSlot )
RETURN Qt_HBSlots_hbDisconnect( ::pPtr, xObj, hbqt_ptr( pSlot ) )
METHOD HBQSlots:hbDisconnect( xObj, pSlot )
RETURN Qt_HBQSlots_hbDisconnect( ::pPtr, xObj, hbqt_ptr( pSlot ) )
METHOD HBSlots:hbIsConnected( xObj, pSlot )
RETURN Qt_HBSlots_hbIsConnected( ::pPtr, xObj, hbqt_ptr( pSlot ) )
METHOD HBQSlots:hbIsConnected( xObj, pSlot )
RETURN Qt_HBQSlots_hbIsConnected( ::pPtr, xObj, hbqt_ptr( pSlot ) )
METHOD HBSlots:hbClear()
RETURN Qt_HBSlots_hbClear( ::pPtr )
METHOD HBQSlots:hbClear()
RETURN Qt_HBQSlots_hbClear( ::pPtr )