diff options
author | Reinhard Tartler <siretart@tauware.de> | 2011-08-26 09:24:25 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-08-26 09:24:25 +0200 |
commit | 7c0fb2e980af93923f2071e1af087010962e06bd (patch) | |
tree | 622e5a8f57901f9f6dbccec081766c29cffbf08e /drv_D4D.c | |
parent | 181cec4348da40331b3e8ab365732c025ec149b2 (diff) | |
download | lcd4linux-7c0fb2e980af93923f2071e1af087010962e06bd.tar.gz |
Import upstream version 0.11.0~svn1158
Diffstat (limited to 'drv_D4D.c')
-rwxr-xr-x | drv_D4D.c | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: drv_D4D.c 897 2008-10-06 04:25:14Z michael $ +/* $Id: drv_D4D.c 1153 2011-07-27 05:12:30Z michael $ * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv_D4D.c $ * * LCD4Linux driver for 4D Systems Display Graphics Modules @@ -533,12 +533,16 @@ int drv_D4D_bar_draw(WIDGET * W) WIDGET_BAR *Bar = W->data; int row, col, len, res, max, val1, val2; DIRECTION dir; - STYLE style; +#if 0 + STYLE style; /* Fixme: unused variable */ +#endif row = W->row; col = W->col; dir = Bar->direction; - style = Bar->style; +#if 0 + style = Bar->style; /* Fixme: unused variable */ +#endif len = Bar->length; res = dir & (DIR_EAST | DIR_WEST) ? XRES : YRES; @@ -650,7 +654,7 @@ int drv_D4D_init(const char *section, const int quiet) WIDGET_CLASS wc; int ret; - info("%s: %s", Name, "$Rev: 897 $"); + info("%s: %s", Name, "$Rev: 1153 $"); if ((ret = drv_D4D_start(section)) != 0) return ret; |