2009-07-17 10:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/rtl/gtxwc/gtxwc.c
    ! Fixed typo.
      This should fix the warning plus black screen reported by 
      some users. Please test.
This commit is contained in:
Viktor Szakats
2009-07-17 08:40:59 +00:00
parent 64f481018a
commit c439db6050
2 changed files with 10 additions and 4 deletions

View File

@@ -17,6 +17,12 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-07-17 10:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/rtl/gtxwc/gtxwc.c
! Fixed typo.
This should fix the warning plus black screen reported by
some users. Please test.
2009-07-17 10:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/rtl/gtxwc/gtxwc.c
! Fixed to compile under cygwin.

View File

@@ -321,7 +321,7 @@ typedef struct tag_rect
int left;
int right;
int bottom;
} HB_RECT;
} XWC_RECT;
typedef struct tag_modifiers
{
@@ -435,10 +435,10 @@ typedef struct tag_x_wnddef
XWC_CharTrans charTrans[256];
BOOL fInvalidChr;
HB_RECT rInvalidChr;
XWC_RECT rInvalidChr;
BOOL fInvalidPts;
HB_RECT rInvalidPts;
XWC_RECT rInvalidPts;
/* Keyboard buffer */
int keyBuffPointer;
@@ -2570,7 +2570,7 @@ static void hb_gt_xwc_RepaintChar( PXWND_DEF wnd, int colStart, int rowStart, in
else
{
usCh16 &= 0xFF;
color &= ( BYTE ) iColor;
color = ( BYTE ) iColor;
}
ulCurr = hb_gt_xwc_HashCurrChar( attr, color, usCh16 );
if( wnd->charTrans[ usCh16 ].inverse )