summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-06-15 12:40:07 (GMT)
committernijtmans <nijtmans>2010-06-15 12:40:07 (GMT)
commit32e568d9d802c1041fc2f6505b16ad94e2ed39cb (patch)
tree1cc1d1dcc3ccc7d501fc9baa6d0cb65c3a285668 /macosx
parent1d9e4b35ac1edb7acb7a11bb871ab2a8d4263892 (diff)
downloadtk-32e568d9d802c1041fc2f6505b16ad94e2ed39cb.zip
tk-32e568d9d802c1041fc2f6505b16ad94e2ed39cb.tar.gz
tk-32e568d9d802c1041fc2f6505b16ad94e2ed39cb.tar.bz2
Terminate TkEnsemble definition with NULL
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXDialog.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c
index d4c14d0..8d07996 100644
--- a/macosx/tkMacOSXDialog.c
+++ b/macosx/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.48 2010/02/05 22:45:03 nijtmans Exp $
+ * RCS: @(#) $Id: tkMacOSXDialog.c,v 1.49 2010/06/15 12:40:07 nijtmans Exp $
*/
#include "tkMacOSXPrivate.h"
@@ -1108,9 +1108,10 @@ static void DeleteFontchooserData(ClientData clientData,
MODULE_SCOPE const TkEnsemble tkFontchooserEnsemble[];
const TkEnsemble tkFontchooserEnsemble[] = {
- { "configure", FontchooserConfigureCmd },
- { "show", FontchooserShowCmd },
- { "hide", FontchooserHideCmd },
+ { "configure", FontchooserConfigureCmd, NULL },
+ { "show", FontchooserShowCmd, NULL },
+ { "hide", FontchooserHideCmd, NULL },
+ { NULL, NULL, NULL }
};
static Tcl_Interp *fontchooserInterp = NULL;