diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2010-01-02 22:52:38 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2010-01-02 22:52:38 (GMT) |
commit | 9ce612177c2d380c040f9f6f9ab986ebd0de3ea6 (patch) | |
tree | 729b6fa569e8ee8448009d10292da7e7a85108b0 /generic/tkStyle.c | |
parent | 3db144c7eb6451a087bb9fd9f7eaa1f611a7118e (diff) | |
download | tk-9ce612177c2d380c040f9f6f9ab986ebd0de3ea6.zip tk-9ce612177c2d380c040f9f6f9ab986ebd0de3ea6.tar.gz tk-9ce612177c2d380c040f9f6f9ab986ebd0de3ea6.tar.bz2 |
SMALL FIX: Remove useless explicit casts now that we require C89 or later.
Diffstat (limited to 'generic/tkStyle.c')
-rw-r--r-- | generic/tkStyle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkStyle.c b/generic/tkStyle.c index a3262bf..fb17b53 100644 --- a/generic/tkStyle.c +++ b/generic/tkStyle.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkStyle.c,v 1.11 2008/11/08 18:44:40 dkf Exp $ + * RCS: @(#) $Id: tkStyle.c,v 1.12 2010/01/02 22:52:38 dkf Exp $ */ #include "tkInt.h" @@ -64,7 +64,7 @@ typedef struct StyleEngine { StyledElement *elements; /* Table of widget element descriptors. Each * element is indexed by a unique system-wide * ID. Table grows dynamically as new elements - * are registered. Malloc'd*/ + * are registered. Malloc'd. */ struct StyleEngine *parentPtr; /* Parent engine. Engines may be layered to * form a fallback chain, terminated by the |