From: cristy Date: Sun, 4 Apr 2010 16:10:59 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~9696 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2dd92ae92ad51c3ce7a73d1bc6b7b8f25ed79ecc;p=imagemagick --- diff --git a/coders/bmp.c b/coders/bmp.c index 90f4430d0..29a8d90f0 100644 --- a/coders/bmp.c +++ b/coders/bmp.c @@ -1344,7 +1344,7 @@ ModuleExport unsigned long RegisterBMPImage(void) entry->decoder=(DecodeImageHandler *) ReadBMPImage; entry->encoder=(EncodeImageHandler *) WriteBMPImage; entry->magick=(IsImageFormatHandler *) IsBMP; - entry->description=ConstantString("Microsoft Windows bitmap image"); + entry->description=ConstantString("Microsoft Windows bitmap image (V5)"); entry->module=ConstantString("BMP"); entry->adjoin=MagickFalse; entry->seekable_stream=MagickTrue; @@ -1352,7 +1352,7 @@ ModuleExport unsigned long RegisterBMPImage(void) entry=SetMagickInfo("BMP2"); entry->encoder=(EncodeImageHandler *) WriteBMPImage; entry->magick=(IsImageFormatHandler *) IsBMP; - entry->description=ConstantString("Microsoft Windows bitmap image v2"); + entry->description=ConstantString("Microsoft Windows bitmap image (V2)"); entry->module=ConstantString("BMP"); entry->adjoin=MagickFalse; entry->seekable_stream=MagickTrue; @@ -1360,7 +1360,7 @@ ModuleExport unsigned long RegisterBMPImage(void) entry=SetMagickInfo("BMP3"); entry->encoder=(EncodeImageHandler *) WriteBMPImage; entry->magick=(IsImageFormatHandler *) IsBMP; - entry->description=ConstantString("Microsoft Windows bitmap image v3"); + entry->description=ConstantString("Microsoft Windows bitmap image (V3)"); entry->module=ConstantString("BMP"); entry->adjoin=MagickFalse; entry->seekable_stream=MagickTrue;