diff options
author | stanton <stanton> | 1998-11-20 02:53:03 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-11-20 02:53:03 (GMT) |
commit | ddc60a3b4112a7fcfe913e0f9882acdc42971a3a (patch) | |
tree | 4682bfe6f578b7ec727c2901ed81e6fafb781788 | |
parent | a3c421c86ed745088533a15c77b7de548d516593 (diff) | |
download | tk-ddc60a3b4112a7fcfe913e0f9882acdc42971a3a.zip tk-ddc60a3b4112a7fcfe913e0f9882acdc42971a3a.tar.gz tk-ddc60a3b4112a7fcfe913e0f9882acdc42971a3a.tar.bz2 |
fixed bug 613, small typo
-rw-r--r-- | generic/tkSquare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkSquare.c b/generic/tkSquare.c index 4fded1a..ec7411f 100644 --- a/generic/tkSquare.c +++ b/generic/tkSquare.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkSquare.c,v 1.1.4.2 1998/09/30 02:17:19 stanton Exp $ + * RCS: @(#) $Id: tkSquare.c,v 1.1.4.3 1998/11/20 02:53:03 stanton Exp $ */ #include "tkPort.h" @@ -71,7 +71,7 @@ static Tk_OptionSpec configSpecs[] = { {TK_OPTION_PIXELS, "-borderwidth", "borderWidth", "BorderWidth", "2", Tk_Offset(Square, borderWidthPtr), -1}, {TK_OPTION_BOOLEAN, "-dbl", "doubleBuffer", "DoubleBuffer", - "1", Tk_Offset(Square, doubleBufferPtr) -1,}, + "1", Tk_Offset(Square, doubleBufferPtr), -1}, {TK_OPTION_SYNONYM, "-fg", (char *) NULL, (char *) NULL, (char *) NULL, 0, -1, 0, (ClientData) "-foreground"}, {TK_OPTION_BORDER, "-foreground", "foreground", "Foreground", |