diff options
author | joye <joye> | 2014-02-28 17:02:46 (GMT) |
---|---|---|
committer | joye <joye> | 2014-02-28 17:02:46 (GMT) |
commit | b34b353473819e0c5907dbd8140a26db0c5cfb09 (patch) | |
tree | d3de96e852dd024b7ff8e4770a44c1a0c14fce76 /src/bltGrText.h | |
parent | d23f63bc4b2b6e246a4542ddd4ad6bd60044805e (diff) | |
download | blt-b34b353473819e0c5907dbd8140a26db0c5cfb09.zip blt-b34b353473819e0c5907dbd8140a26db0c5cfb09.tar.gz blt-b34b353473819e0c5907dbd8140a26db0c5cfb09.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrText.h')
-rw-r--r-- | src/bltGrText.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bltGrText.h b/src/bltGrText.h index 069eccc..3f1cc61 100644 --- a/src/bltGrText.h +++ b/src/bltGrText.h @@ -48,7 +48,7 @@ typedef struct { unsigned int state; /* If non-zero, indicates to draw text * in the active color */ - XColor *color; /* Color to draw the text. */ + XColor* color; /* Color to draw the text. */ Tk_Font font; /* Font to use to draw text */ double angle; /* Rotation of text in degrees. */ Tk_Justify justify; /* Justification of the text @@ -112,7 +112,7 @@ extern void Blt_Ts_DrawText(Tk_Window tkwin, Drawable drawable, #define Blt_Ts_InitStyle(ts) \ ((ts).anchor = TK_ANCHOR_NW, \ - (ts).color = (XColor *)NULL, \ + (ts).color = (XColor*)NULL, \ (ts).font = NULL, \ (ts).justify = TK_JUSTIFY_LEFT, \ (ts).leader = 0, \ |