summaryrefslogtreecommitdiffstats
path: root/generic/tkFont.h
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2006-12-01 20:14:22 (GMT)
committerKevin B Kenny <kennykb@acm.org>2006-12-01 20:14:22 (GMT)
commit10a9bee4327efae24bd3100c99cba0df02a80657 (patch)
tree489ea29c16233aae8944a6e2c553d6f40503fc20 /generic/tkFont.h
parente02f33e09fae816619b13acf92deb6b5e0e5c7d6 (diff)
downloadtk-10a9bee4327efae24bd3100c99cba0df02a80657.zip
tk-10a9bee4327efae24bd3100c99cba0df02a80657.tar.gz
tk-10a9bee4327efae24bd3100c99cba0df02a80657.tar.bz2
TIP 300 IMPLEMENTATION
Diffstat (limited to 'generic/tkFont.h')
-rw-r--r--generic/tkFont.h6
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.