diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2004-07-14 06:37:04 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2004-07-14 06:37:04 +0000 |
commit | 40215526a37d1a6419fcb30c421d43170f8dbd28 (patch) | |
tree | 9703e3783b381a2adf0bee003e5bb7a1c861f1d3 /misc | |
parent | 9c0d6951bd7ac86e50b24b8e1781545b5de2698a (diff) | |
download | ports-40215526a37d1a6419fcb30c421d43170f8dbd28.tar.gz ports-40215526a37d1a6419fcb30c421d43170f8dbd28.zip |
Notes
Diffstat (limited to 'misc')
-rw-r--r-- | misc/xosd/files/patch-xosd.c | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/misc/xosd/files/patch-xosd.c b/misc/xosd/files/patch-xosd.c index a488947df2a9..8f7f55b4e51d 100644 --- a/misc/xosd/files/patch-xosd.c +++ b/misc/xosd/files/patch-xosd.c @@ -1,5 +1,23 @@ ---- src/libxosd/xosd.c.orig Mon Jul 5 02:29:06 2004 -+++ src/libxosd/xosd.c Sun Jul 11 06:30:47 2004 +--- src/libxosd/xosd.c.orig Sun Jul 4 15:29:06 2004 ++++ src/libxosd/xosd.c Tue Jul 13 22:05:03 2004 +@@ -272,7 +272,7 @@ + { + int x = 10; + int y = osd->line_height * line; +- int i; ++ int i, draw_line_bitmap; + xosd_line *l = &osd->lines[line]; + assert(osd); + FUNCTION_START; +@@ -352,7 +352,7 @@ + + if (osd->outline_offset) { + XSetForeground(osd->display, osd->gc, osd->outline_pixel); +- int draw_line_bitmap = !(osd->fill_mask & FILL_OUTLINE); ++ draw_line_bitmap = !(osd->fill_mask & FILL_OUTLINE); + + for (i = 1; i <= osd->outline_offset; i++) { + draw_with_mask(osd, l, x + i, y, i - osd->extent->y, @@ -432,7 +432,7 @@ FUNCTION_START; DEBUG("event thread started"); |