summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorhobbs <hobbs>2003-04-30 16:18:58 (GMT)
committerhobbs <hobbs>2003-04-30 16:18:58 (GMT)
commit513919cbad4d351c94c5bf05908de070e5627385 (patch)
tree413abac29c703ccbd9f8b576346abdad069c863b /macosx
parent4dd5de8cb5dc5b0bd481967119258de6a7028826 (diff)
downloadtk-513919cbad4d351c94c5bf05908de070e5627385.zip
tk-513919cbad4d351c94c5bf05908de070e5627385.tar.gz
tk-513919cbad4d351c94c5bf05908de070e5627385.tar.bz2
* macosx/tkMacOSXButton.c (TkpDisplayButton): correct typo for
stippleGC [Bug #730124].
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXButton.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c
index 6bd99d9..2366e01 100644
--- a/macosx/tkMacOSXButton.c
+++ b/macosx/tkMacOSXButton.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: tkMacOSXButton.c,v 1.2.2.1 2003/04/26 02:53:47 hobbs Exp $
+ * RCS: @(#) $Id: tkMacOSXButton.c,v 1.2.2.2 2003/04/30 16:19:07 hobbs Exp $
*/
#include "tkButton.h"
@@ -465,7 +465,7 @@ TkpDisplayButton(
&& ((butPtr->disabledFg == NULL) || (butPtr->image != NULL))) {
if ((butPtr->flags & SELECTED) && !butPtr->indicatorOn
&& (butPtr->selectBorder != NULL)) {
- XSetForeground(butPtr->display, butPtr->stippledGC,
+ XSetForeground(butPtr->display, butPtr->stippleGC,
Tk_3DBorderColor(butPtr->selectBorder)->pixel);
}
/*
@@ -483,7 +483,7 @@ TkpDisplayButton(
}
if ((butPtr->flags & SELECTED) && !butPtr->indicatorOn
&& (butPtr->selectBorder != NULL)) {
- XSetForeground(butPtr->display, butPtr->stippledGC,
+ XSetForeground(butPtr->display, butPtr->stippleGC,
Tk_3DBorderColor(butPtr->normalBorder)->pixel);
}
}