diff options
author | kennykb <kennykb@noemail.net> | 2006-12-01 20:14:22 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2006-12-01 20:14:22 (GMT) |
commit | f79c55ff78a3655cd0828c7a8280e4c882d7b511 (patch) | |
tree | 489ea29c16233aae8944a6e2c553d6f40503fc20 /generic/tkFont.h | |
parent | 6957a24cdcdceaa7dfc35bb3650a37ff48784be1 (diff) | |
download | tk-f79c55ff78a3655cd0828c7a8280e4c882d7b511.zip tk-f79c55ff78a3655cd0828c7a8280e4c882d7b511.tar.gz tk-f79c55ff78a3655cd0828c7a8280e4c882d7b511.tar.bz2 |
TIP 300 IMPLEMENTATION
FossilOrigin-Name: c2f09fce1e370748b29a5a3709a29153dfd4fc20
Diffstat (limited to 'generic/tkFont.h')
-rw-r--r-- | generic/tkFont.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkFont.h b/generic/tkFont.h index cc362fb..9ea3488 100644 --- a/generic/tkFont.h +++ b/generic/tkFont.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkFont.h,v 1.8 2006/03/22 00:21:16 das Exp $ + * RCS: @(#) $Id: tkFont.h,v 1.9 2006/12/01 20:14:23 kennykb Exp $ */ #ifndef _TKFONT @@ -27,7 +27,7 @@ * attributes gotten when the font was instantiated. */ -typedef struct TkFontAttributes { +struct TkFontAttributes { Tk_Uid family; /* Font family, or NULL to represent plaform- * specific default system font. */ int size; /* Pointsize of font, 0 for default size, or @@ -36,7 +36,7 @@ typedef struct TkFontAttributes { int slant; /* Slant flag; see below for def'n. */ int underline; /* Non-zero for underline font. */ int overstrike; /* Non-zero for overstrike font. */ -} TkFontAttributes; +}; /* * Possible values for the "weight" field in a TkFontAttributes structure. |