diff options
author | reinelt <> | 2003-10-22 04:32:25 +0000 |
---|---|---|
committer | reinelt <> | 2003-10-22 04:32:25 +0000 |
commit | 27147952dae09ed04812103cf57576713d047bfa (patch) | |
tree | 498d0387f2d92edcef538403ab916ed1f21c656f /XWindow.c | |
parent | 78db54efea1a7af36a2f02d8c960f17297386d98 (diff) | |
download | lcd4linux-27147952dae09ed04812103cf57576713d047bfa.tar.gz |
[lcd4linux @ 2003-10-22 04:32:25 by reinelt]
fixed icon bug found by Rob van Nieuwkerk
Diffstat (limited to 'XWindow.c')
-rw-r--r-- | XWindow.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: XWindow.c,v 1.35 2003/10/05 17:58:50 reinelt Exp $ +/* $Id: XWindow.c,v 1.36 2003/10/22 04:32:25 reinelt Exp $ * * X11 Driver for LCD4Linux * @@ -22,6 +22,9 @@ * * * $Log: XWindow.c,v $ + * Revision 1.36 2003/10/22 04:32:25 reinelt + * fixed icon bug found by Rob van Nieuwkerk + * * Revision 1.35 2003/10/05 17:58:50 reinelt * libtool junk; copyright messages cleaned up * @@ -464,7 +467,9 @@ int xlcdinit(LCD *Self) int xlcdclear(int full) { - return pix_clear(); + icon_clear(); + pix_clear(); + return 0; } |