diff options
author | jenglish <jenglish@flightlab.com> | 2007-01-11 19:59:26 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2007-01-11 19:59:26 (GMT) |
commit | c48f4f5bf3717299252cba2e4faa31f395ce1689 (patch) | |
tree | 8277dd861a947f2adb0b4634f031f9c651f7e8d0 /generic/ttk/ttkElements.c | |
parent | 72b0a491e8d2e18f644d6698540fbe79918d17ea (diff) | |
download | tk-c48f4f5bf3717299252cba2e4faa31f395ce1689.zip tk-c48f4f5bf3717299252cba2e4faa31f395ce1689.tar.gz tk-c48f4f5bf3717299252cba2e4faa31f395ce1689.tar.bz2 |
Revert previous change to keep in sync with Tile codebase.
The minor warnings from GCC fixed in the previous revision
were false positives due to improper use of "-Wconversion".
Still compiles cleanly with "gcc -Wall -Werror" (gcc 3.3.5).
Diffstat (limited to 'generic/ttk/ttkElements.c')
-rw-r--r-- | generic/ttk/ttkElements.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/ttk/ttkElements.c b/generic/ttk/ttkElements.c index cb2c5b5..3c5c4c8 100644 --- a/generic/ttk/ttkElements.c +++ b/generic/ttk/ttkElements.c @@ -1,4 +1,4 @@ -/* $Id: ttkElements.c,v 1.5 2007/01/11 15:35:40 dkf Exp $ +/* $Id: ttkElements.c,v 1.6 2007/01/11 19:59:26 jenglish Exp $ * * Copyright (c) 2003, Joe English * @@ -84,7 +84,7 @@ BackgroundElementDraw( XFillRectangle(Tk_Display(tkwin), d, Tk_3DBorderGC(tkwin, backgroundPtr, TK_3D_FLAT_GC), - 0,0, (unsigned)Tk_Width(tkwin), (unsigned)Tk_Height(tkwin)); + 0,0, Tk_Width(tkwin), Tk_Height(tkwin)); } static Ttk_ElementSpec BackgroundElementSpec = @@ -297,8 +297,7 @@ static void DrawFocusRing( mask = GCForeground | GCLineStyle | GCDashList | GCDashOffset | GCLineWidth; gc = Tk_GetGC(tkwin, mask, &gcvalues); - XDrawRectangle(Tk_Display(tkwin), d, gc, b.x, b.y, - (unsigned)b.width-1, (unsigned)b.height-1); + XDrawRectangle(Tk_Display(tkwin), d, gc, b.x, b.y, b.width-1, b.height-1); Tk_FreeGC(Tk_Display(tkwin), gc); } |