diff options
author | das <das> | 2009-04-10 16:07:54 (GMT) |
---|---|---|
committer | das <das> | 2009-04-10 16:07:54 (GMT) |
commit | c6b8c8a1001ee5c40918393538134f1fcbff9222 (patch) | |
tree | b1c4d15dd2338e4ea1b948a33454c16792ca4d0a /generic/tkMenubutton.c | |
parent | 7e8f3721cfd6fd8c1dff4e489d5549ee1421cf29 (diff) | |
download | tk-c6b8c8a1001ee5c40918393538134f1fcbff9222.zip tk-c6b8c8a1001ee5c40918393538134f1fcbff9222.tar.gz tk-c6b8c8a1001ee5c40918393538134f1fcbff9222.tar.bz2 |
* generic/tkMenubutton.c: s/DEF_BUTTON_JUSTIFY/DEF_MENUBUTTON_JUSTIFY/
Diffstat (limited to 'generic/tkMenubutton.c')
-rw-r--r-- | generic/tkMenubutton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkMenubutton.c b/generic/tkMenubutton.c index e2c5038..0ea3b42 100644 --- a/generic/tkMenubutton.c +++ b/generic/tkMenubutton.c @@ -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: tkMenubutton.c,v 1.24 2008/11/08 22:52:29 dkf Exp $ + * RCS: @(#) $Id: tkMenubutton.c,v 1.25 2009/04/10 16:07:54 das Exp $ */ #include "tkInt.h" @@ -108,7 +108,7 @@ static const Tk_OptionSpec optionSpecs[] = { DEF_MENUBUTTON_INDICATOR, -1, Tk_Offset(TkMenuButton, indicatorOn), 0, 0, 0}, {TK_OPTION_JUSTIFY, "-justify", "justify", "Justify", - DEF_BUTTON_JUSTIFY, -1, Tk_Offset(TkMenuButton, justify), 0, 0, 0}, + DEF_MENUBUTTON_JUSTIFY, -1, Tk_Offset(TkMenuButton, justify), 0, 0, 0}, {TK_OPTION_STRING, "-menu", "menu", "Menu", DEF_MENUBUTTON_MENU, -1, Tk_Offset(TkMenuButton, menuName), TK_OPTION_NULL_OK, 0, 0}, |