diff options
-rw-r--r-- | src/gui/text/qstatictext_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/text/qstatictext_p.h b/src/gui/text/qstatictext_p.h index 95bd286..d2afad6 100644 --- a/src/gui/text/qstatictext_p.h +++ b/src/gui/text/qstatictext_p.h @@ -131,9 +131,9 @@ public: glyph_t *glyphPool; // 4 bytes per text QFixedPoint *positionPool; // 4 bytes per text - char needsClipRect : 1; // 1 byte per text - char useBackendOptimizations : 1; - char textFormat : 2; + unsigned char needsClipRect : 1; // 1 byte per text + unsigned char useBackendOptimizations : 1; + unsigned char textFormat : 2; // ================ // 171 bytes per text |