diff options
author | nijtmans <nijtmans> | 2010-02-05 22:45:03 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-05 22:45:03 (GMT) |
commit | 454e04bbf4e61fb4a363ffcfedb08e941a17952f (patch) | |
tree | 13a98d3f366ae4c7f4dac0f3935a609ea5797c2f /carbon | |
parent | cece90e032954ae35ffb33120b3a0a01cd226b25 (diff) | |
download | tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.zip tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.tar.gz tk-454e04bbf4e61fb4a363ffcfedb08e941a17952f.tar.bz2 |
Make more internal tables "const"
tk*Decls.h (regenerated with new genStubs.tcl from Tcl)
Diffstat (limited to 'carbon')
-rw-r--r-- | carbon/tkMacOSXDialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/carbon/tkMacOSXDialog.c b/carbon/tkMacOSXDialog.c index ff135e5..4086d47 100644 --- a/carbon/tkMacOSXDialog.c +++ b/carbon/tkMacOSXDialog.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: tkMacOSXDialog.c,v 1.1 2009/06/26 01:42:46 das Exp $ + * RCS: @(#) $Id: tkMacOSXDialog.c,v 1.2 2010/02/05 22:45:03 nijtmans Exp $ */ #include "tkMacOSXPrivate.h" @@ -1783,7 +1783,7 @@ static FMFontStyle fontPanelFontStyle = -1; static FMFontSize fontPanelFontSize = 0; static FMFont fontPanelFontID = kInvalidFont; -static const char *fontchooserOptionStrings[] = { +static const char *const fontchooserOptionStrings[] = { "-parent", "-title", "-font", "-command", "-visible", NULL }; |