diff options
author | nijtmans <nijtmans> | 2009-01-28 20:47:49 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-01-28 20:47:49 (GMT) |
commit | 53f95f2d8f73b96fbd4dac1a784ce90eb133c0a1 (patch) | |
tree | fdebc2108b277faed42ddafa5e7633fc51b503ec /win/tkWinFont.c | |
parent | 8faa6f4e39faa11f5f8363f8ce53550991b95d3f (diff) | |
download | tk-53f95f2d8f73b96fbd4dac1a784ce90eb133c0a1.zip tk-53f95f2d8f73b96fbd4dac1a784ce90eb133c0a1.tar.gz tk-53f95f2d8f73b96fbd4dac1a784ce90eb133c0a1.tar.bz2 |
- eliminate some unnessary type casts
- some internal const decorations
- spacing
Diffstat (limited to 'win/tkWinFont.c')
-rw-r--r-- | win/tkWinFont.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinFont.c b/win/tkWinFont.c index 9fa4963..a1ef63a 100644 --- a/win/tkWinFont.c +++ b/win/tkWinFont.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinFont.c,v 1.45 2008/11/22 20:05:32 patthoyts Exp $ + * RCS: @(#) $Id: tkWinFont.c,v 1.46 2009/01/28 20:47:49 nijtmans Exp $ */ #include "tkWinInt.h" @@ -2363,7 +2363,7 @@ SeenName( } seen += strlen(seen) + 1; } - Tcl_DStringAppend(dsPtr, (char *) name, (int) (strlen(name) + 1)); + Tcl_DStringAppend(dsPtr, name, (int) (strlen(name) + 1)); return 0; } @@ -2615,7 +2615,7 @@ FamilyOrAliasExists( int i; if (FamilyExists(hdc, faceName) != 0) { - return (char *) faceName; + return faceName; } aliases = TkFontGetAliasList(faceName); if (aliases != NULL) { |