From b370065f9d23b3cab3bb0b3a43e6b48ca7b93fd5 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 20 Sep 2010 11:50:23 +0000 Subject: [PATCH] 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. --- harbour/ChangeLog | 7 +++++ .../g/{THBEvents.prg => THBQEvents.prg} | 22 ++++++++-------- .../qtcore/g/{THBSlots.prg => THBQSlots.prg} | 26 +++++++++---------- 3 files changed, 31 insertions(+), 24 deletions(-) rename harbour/contrib/hbqt/qtcore/g/{THBEvents.prg => THBQEvents.prg} (85%) rename harbour/contrib/hbqt/qtcore/g/{THBSlots.prg => THBQSlots.prg} (83%) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0baf19c1aa..ae02a51c94 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/hbqt/qtcore/g/THBEvents.prg b/harbour/contrib/hbqt/qtcore/g/THBQEvents.prg similarity index 85% rename from harbour/contrib/hbqt/qtcore/g/THBEvents.prg rename to harbour/contrib/hbqt/qtcore/g/THBQEvents.prg index de11a3dd5f..0b991e6f31 100644 --- a/harbour/contrib/hbqt/qtcore/g/THBEvents.prg +++ b/harbour/contrib/hbqt/qtcore/g/THBQEvents.prg @@ -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 ) diff --git a/harbour/contrib/hbqt/qtcore/g/THBSlots.prg b/harbour/contrib/hbqt/qtcore/g/THBQSlots.prg similarity index 83% rename from harbour/contrib/hbqt/qtcore/g/THBSlots.prg rename to harbour/contrib/hbqt/qtcore/g/THBQSlots.prg index e036537936..56fc0d4fd2 100644 --- a/harbour/contrib/hbqt/qtcore/g/THBSlots.prg +++ b/harbour/contrib/hbqt/qtcore/g/THBQSlots.prg @@ -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 )