summaryrefslogtreecommitdiffstats
path: root/win/tkWinDraw.c
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-09-02 17:03:22 (GMT)
committerhobbs <hobbs>1999-09-02 17:03:22 (GMT)
commit73996d52f3222139f2789a89017704459534e839 (patch)
tree6fdffdab6de9dd6b92752b9d8df7f6d10e396ecc /win/tkWinDraw.c
parent28656df2175564b486ec91a8e15e46ad54a9a432 (diff)
downloadtk-73996d52f3222139f2789a89017704459534e839.zip
tk-73996d52f3222139f2789a89017704459534e839.tar.gz
tk-73996d52f3222139f2789a89017704459534e839.tar.bz2
* win/tkWinDraw.c:
* unix/tkUnixDraw.c: fixed header style for TkpDrawHighlightBorder * generic/tkCanvas.c: fixed GC error (bg <> fg) in tkCanvas.c (from code added to support TkpDrawHighlightBorder) [Bug: 2676] * unix/aclocal.m4: added -bnoentry to the AIX-* flags
Diffstat (limited to 'win/tkWinDraw.c')
-rw-r--r--win/tkWinDraw.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/win/tkWinDraw.c b/win/tkWinDraw.c
index 13a15bd..5c89989 100644
--- a/win/tkWinDraw.c
+++ b/win/tkWinDraw.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: tkWinDraw.c,v 1.5 1999/08/10 05:04:56 jingham Exp $
+ * RCS: @(#) $Id: tkWinDraw.c,v 1.6 1999/09/02 17:03:26 hobbs Exp $
*/
#include "tkWinInt.h"
@@ -1269,7 +1269,7 @@ TkWinFillRect(dc, x, y, width, height, pixel)
ExtTextOut(dc, 0, 0, ETO_OPAQUE, &rect, NULL, 0, NULL);
SetBkColor(dc, oldColor);
}
-
+
/*
*----------------------------------------------------------------------
*
@@ -1293,13 +1293,12 @@ TkWinFillRect(dc, x, y, width, height, pixel)
*/
void
-TkpDrawHighlightBorder (
- Tk_Window tkwin,
- GC fgGC,
- GC bgGC,
- int highlightWidth,
- Drawable drawable)
+TkpDrawHighlightBorder(tkwin, fgGC, bgGC, highlightWidth, drawable)
+ Tk_Window tkwin;
+ GC fgGC;
+ GC bgGC;
+ int highlightWidth;
+ Drawable drawable;
{
- TkDrawInsetFocusHighlight (tkwin, fgGC, highlightWidth, drawable, 0);
+ TkDrawInsetFocusHighlight(tkwin, fgGC, highlightWidth, drawable, 0);
}
- \ No newline at end of file