diff options
author | das <das> | 2007-06-04 09:28:44 (GMT) |
---|---|---|
committer | das <das> | 2007-06-04 09:28:44 (GMT) |
commit | 5cca131c49f39cce7cabd10ea39473d103e5d505 (patch) | |
tree | b3e77654d4b69228085592fcc9bcb40f322a2d57 /macosx/tkMacOSXEntry.c | |
parent | 824e6c983fb4c01fff29673cd17da4366a5e3f5b (diff) | |
download | tk-5cca131c49f39cce7cabd10ea39473d103e5d505.zip tk-5cca131c49f39cce7cabd10ea39473d103e5d505.tar.gz tk-5cca131c49f39cce7cabd10ea39473d103e5d505.tar.bz2 |
* macosx/tkMacOSXMenu.c: add error checking; whitespace cleanup.
* macosx/tkMacOSXDraw.c: sync comment formatting with HEAD.
* macosx/tkMacOSXEmbed.c:
* macosx/tkMacOSXEntry.c:
* macosx/tkMacOSXKeyEvent.c:
* macosx/tkMacOSXKeyboard.c:
* macosx/tkMacOSXMenus.c:
* macosx/tkMacOSXSend.c:
* macosx/tkMacOSXSubwindows.c:
* macosx/tkMacOSXWindowEvent.c:
* macosx/tkMacOSXWm.c:
* macosx/tkMacOSXXStubs.c:
Diffstat (limited to 'macosx/tkMacOSXEntry.c')
-rw-r--r-- | macosx/tkMacOSXEntry.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/macosx/tkMacOSXEntry.c b/macosx/tkMacOSXEntry.c index 1f12cf5..c412f31 100644 --- a/macosx/tkMacOSXEntry.c +++ b/macosx/tkMacOSXEntry.c @@ -53,7 +53,7 @@ * software in accordance with the terms specified in this * license. * - * RCS: @(#) $Id: tkMacOSXEntry.c,v 1.2.2.8 2007/04/29 02:26:49 das Exp $ + * RCS: @(#) $Id: tkMacOSXEntry.c,v 1.2.2.9 2007/06/04 09:28:44 das Exp $ */ #include "tkMacOSXInt.h" @@ -257,7 +257,10 @@ TkpDrawSpinboxButtons(Spinbox *sbPtr, Drawable d) GC bgGC; MacDrawable *macDraw = (MacDrawable *) d; - /* FIXME RAISED really makes more sense */ + /* + * FIXME: RAISED really makes more sense + */ + if (sbPtr->buRelief != TK_RELIEF_FLAT) { return 0; } |