Fix warning about missing enumeration value.

Change-Id: If97a325d056282a033cdb4c6e5bdc79eb400c525
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
This commit is contained in:
Friedemann Kleint 2013-01-15 10:56:19 +01:00 committed by The Qt Project
parent 0c4f6c6ea9
commit 71a7ad80c0

View File

@ -305,6 +305,8 @@ void QImageTextureGlyphCache::createTextureData(int width, int height)
case QFontEngineGlyphCache::Raster_RGBMask:
m_image = QImage(width, height, QImage::Format_RGB32);
break;
case QFontEngineGlyphCache::Raster_ARGB:
break;
}
}