diff options
author | das <das> | 2005-05-24 02:32:41 (GMT) |
---|---|---|
committer | das <das> | 2005-05-24 02:32:41 (GMT) |
commit | 1c7a49eaf761581939a9ca94f69f0ff60ebd0e74 (patch) | |
tree | 5fe820f7cadb4f2bb7c690ed274a723315bdc84f | |
parent | 343055908105d05cde7d76e4920a7c2bc913cd8e (diff) | |
download | tk-1c7a49eaf761581939a9ca94f69f0ff60ebd0e74.zip tk-1c7a49eaf761581939a9ca94f69f0ff60ebd0e74.tar.gz tk-1c7a49eaf761581939a9ca94f69f0ff60ebd0e74.tar.bz2 |
* generic/tkTest.c: disable commands not available on TkAqua.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | generic/tkTest.c | 8 |
2 files changed, 6 insertions, 4 deletions
@@ -4,6 +4,8 @@ 2005-05-24 Daniel Steffen <das@users.sourceforge.net> + * generic/tkTest.c: disable commands not available on TkAqua. + * macosx/Makefile: * macosx/README: * macosx/Tk-Info.plist.in (new file): diff --git a/generic/tkTest.c b/generic/tkTest.c index 7a5256f..846d87e 100644 --- a/generic/tkTest.c +++ b/generic/tkTest.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTest.c,v 1.24 2004/09/10 12:13:40 vincentdarley Exp $ + * RCS: @(#) $Id: tkTest.c,v 1.25 2005/05/24 02:32:42 das Exp $ */ #include "tkInt.h" @@ -281,7 +281,7 @@ Tktest_Init(interp) (ClientData) Tk_MainWindow(interp), (Tcl_CmdDeleteProc *) NULL); Tcl_CreateCommand(interp, "testmakeexist", TestmakeexistCmd, (ClientData) Tk_MainWindow(interp), (Tcl_CmdDeleteProc *) NULL); -#if !(defined(__WIN32__)) +#if !(defined(__WIN32__) || defined(MAC_OSX_TK)) Tcl_CreateCommand(interp, "testmenubar", TestmenubarCmd, (ClientData) Tk_MainWindow(interp), (Tcl_CmdDeleteProc *) NULL); #endif @@ -291,7 +291,7 @@ Tktest_Init(interp) #endif Tcl_CreateCommand(interp, "testprop", TestpropCmd, (ClientData) Tk_MainWindow(interp), (Tcl_CmdDeleteProc *) NULL); -#if !(defined(__WIN32__)) +#if !(defined(__WIN32__) || defined(MAC_OSX_TK)) Tcl_CreateCommand(interp, "testsend", TestsendCmd, (ClientData) Tk_MainWindow(interp), (Tcl_CmdDeleteProc *) NULL); #endif @@ -2190,7 +2190,7 @@ TestpropCmd(clientData, interp, argc, argv) */ /* ARGSUSED */ -#if !(defined(__WIN32__)) +#if !(defined(__WIN32__) || defined(MAC_OSX_TK)) static int TestsendCmd(clientData, interp, argc, argv) ClientData clientData; /* Main window for application. */ |