summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-01-15 10:56:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-15 13:26:43 +0100
commit71a7ad80c0fd908fd743ff1f4919a72997568e3e (patch)
tree6864fbfbe2ffc0fa2705b9ada71a8862915baab0
parent0c4f6c6ea9415bcc5fde3e34bf909f43a9c6483c (diff)
Fix warning about missing enumeration value.
Change-Id: If97a325d056282a033cdb4c6e5bdc79eb400c525 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
-rw-r--r--src/gui/painting/qtextureglyphcache.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/painting/qtextureglyphcache.cpp b/src/gui/painting/qtextureglyphcache.cpp
index 43243b7c34..a9d5e21b50 100644
--- a/src/gui/painting/qtextureglyphcache.cpp
+++ b/src/gui/painting/qtextureglyphcache.cpp
@@ -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;
}
}