20000417-16:06 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
20000417-16:06 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
|
||||
|
||||
* config/os2/gcc.cf
|
||||
! hope it's last time; before deleting old .a check if it exists
|
||||
* source/rtl/gtos2/gtos2.c
|
||||
! a few calls to TRACE macro with wrong parameters name
|
||||
|
||||
20000417-15:55 GMT+1 Ryszard Glab <rglab@imid.med.pl>
|
||||
|
||||
*source/rtl/diskspac.c
|
||||
@@ -34,10 +41,10 @@
|
||||
*changed to use HB_XREGS
|
||||
|
||||
*source/rtl/gtapi.c
|
||||
*fixed printing using console output
|
||||
*fixed printing using console output
|
||||
|
||||
*source/rtl/gtcrs/gtcrs.c
|
||||
*altarnate characters set is disabled for xterm
|
||||
*altarnate characters set is disabled for xterm
|
||||
|
||||
20000417-06:32 GMT+1 Victor Szakats <info@szelvesz.hu>
|
||||
|
||||
|
||||
@@ -60,9 +60,9 @@ echo END >> __lib__.tmp
|
||||
$(AR) -M < __lib__.tmp
|
||||
endef
|
||||
|
||||
# Under OS/2 || isn't a command separator (inside a shell, that is); correct separator is &
|
||||
# Under OS/2 || isn't a command separator (inside a shell, that is); correct separator is &
|
||||
AR = ar
|
||||
ARFLAGS =
|
||||
AR_RULE = $(RM) $@ & $(create_library) & $(RM) __lib__.tmp
|
||||
AR_RULE = IF EXIST $@ $(RM) $@ & $(create_library) & $(RM) __lib__.tmp
|
||||
|
||||
include $(TOP)$(ROOT)config/rules.cf
|
||||
|
||||
@@ -367,7 +367,7 @@ void hb_gt_Scroll( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT usRight,
|
||||
{
|
||||
/* Chen Kedem <niki@actcom.co.il> */
|
||||
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_Scroll(%hu, %hu, %hu, %hu, %d, %hd, %hd)", usTop, usLeft, usBottom, usRigth, (int) attr, sVert, sHoriz));
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_Scroll(%hu, %hu, %hu, %hu, %d, %hd, %hd)", usTop, usLeft, usBottom, usRight, (int) attr, sVert, sHoriz));
|
||||
|
||||
if(s_uiDispCount > 0)
|
||||
{
|
||||
@@ -634,7 +634,7 @@ int hb_gt_RectSize( USHORT rows, USHORT cols )
|
||||
|
||||
void hb_gt_GetText( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT usRight, BYTE *dest )
|
||||
{
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_GetText(%hu, %hu, %hu, %hu, %p)", usTop, usLeft, usBottom, usRigth, dest));
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_GetText(%hu, %hu, %hu, %hu, %p)", usTop, usLeft, usBottom, usRight, dest));
|
||||
|
||||
if(s_uiDispCount > 0) {
|
||||
USHORT x, y;
|
||||
@@ -659,7 +659,7 @@ void hb_gt_GetText( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT usRight
|
||||
|
||||
void hb_gt_PutText( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT usRight, BYTE *srce )
|
||||
{
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_PutText(%hu, %hu, %hu, %hu, %p)", usTop, usLeft, usBottom, usRigth, srce));
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_PutText(%hu, %hu, %hu, %hu, %p)", usTop, usLeft, usBottom, usRight, srce));
|
||||
|
||||
if(s_uiDispCount > 0) {
|
||||
USHORT x, y;
|
||||
@@ -688,7 +688,7 @@ void hb_gt_SetAttribute( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT us
|
||||
TODO: work with DispBegin DispEnd
|
||||
*/
|
||||
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_SetAttribute(%hu, %hu, %hu, %hu, %d)", usTop, usLeft, usBottom, usRigth, (int) attr));
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_gt_SetAttribute(%hu, %hu, %hu, %hu, %d)", usTop, usLeft, usBottom, usRight, (int) attr));
|
||||
|
||||
if(s_uiDispCount >0) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user