mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
change signature to fit API changes (but don't use new params yet);
fix formatting.
This commit is contained in:
parent
cb72da4acb
commit
5a5fa2c1aa
1 changed files with 47 additions and 44 deletions
|
@ -51,10 +51,11 @@ frank_draw_destroyCtxt( DrawCtx* p_dctx )
|
|||
} /* draw_setup */
|
||||
#endif
|
||||
|
||||
static void
|
||||
static XP_Bool
|
||||
frank_draw_boardBegin( DrawCtx* p_dctx, XP_Rect* rect, XP_Bool hasfocus )
|
||||
{
|
||||
/* FrankDrawCtx* dctx = (FrankDrawCtx*)p_dctx; */
|
||||
return XP_TRUE;
|
||||
} /* draw_finish */
|
||||
|
||||
static void
|
||||
|
@ -90,6 +91,7 @@ static XP_Bool
|
|||
frank_draw_drawCell( DrawCtx* p_dctx, XP_Rect* xprect,
|
||||
XP_UCHAR* letters, XP_Bitmap* bitmap,
|
||||
XP_S16 owner, XWBonusType bonus,
|
||||
HintAtts hintAtts,
|
||||
XP_Bool isBlank, XP_Bool isPending, XP_Bool isStar )
|
||||
{
|
||||
FrankDrawCtx* dctx = (FrankDrawCtx*)p_dctx;
|
||||
|
@ -170,13 +172,14 @@ frank_draw_invertCell( DrawCtx* p_dctx, XP_Rect* rect )
|
|||
GUI_UpdateNow();
|
||||
} /* frank_draw_invertCell */
|
||||
|
||||
static void
|
||||
static XP_Bool
|
||||
frank_draw_trayBegin( DrawCtx* p_dctx, XP_Rect* rect, XP_U16 owner,
|
||||
XP_Bool hasfocus )
|
||||
{
|
||||
/* FrankDrawCtx* dctx = (FrankDrawCtx*)p_dctx; */
|
||||
/* clip? */
|
||||
/* eraseRect( dctx, rect ); */
|
||||
return XP_TRUE;
|
||||
} /* frank_draw_trayBegin */
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue