minor cleaning

This commit is contained in:
fluxgen 2002-11-14 10:12:42 +00:00
parent 7c24bf9b5a
commit d6ed5970a8

View file

@ -22,7 +22,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
// $Id: Image.cc,v 1.16 2002/09/15 09:42:00 fluxgen Exp $
// $Id: Image.cc,v 1.17 2002/11/14 10:12:42 fluxgen Exp $
//use GNU extensions
#ifndef _GNU_SOURCE
@ -2288,7 +2288,9 @@ Pixmap BImageControl::renderImage(unsigned int width, unsigned int height,
void BImageControl::removeImage(Pixmap pixmap) {
if (pixmap) {
if (!pixmap)
return;
CacheList::iterator it = cache.begin();
CacheList::iterator it_end = cache.end();
for (; it != it_end; ++it) {
@ -2307,7 +2309,6 @@ void BImageControl::removeImage(Pixmap pixmap) {
}
}
}
}
void BImageControl::colorTables(unsigned char **rmt, unsigned char **gmt,