diff options
author | Andreas Kling <andreas.kling@nokia.com> | 2010-06-23 23:49:52 (GMT) |
---|---|---|
committer | Andreas Kling <andreas.kling@nokia.com> | 2010-06-24 00:26:24 (GMT) |
commit | fdc0d441e1c1331fb639e5d5f59daf3fb22a7e24 (patch) | |
tree | f673df713e985e7528e417c962cdbe1645f094ee /src | |
parent | e5722f539888913b9bea4f91db95f5e2c5fceed1 (diff) | |
download | Qt-fdc0d441e1c1331fb639e5d5f59daf3fb22a7e24.zip Qt-fdc0d441e1c1331fb639e5d5f59daf3fb22a7e24.tar.gz Qt-fdc0d441e1c1331fb639e5d5f59daf3fb22a7e24.tar.bz2 |
Make QtFontFamily::symbol_checked a bitfield.
Reviewed-by: Benjamin Poulain <benjamin.poulain@nokia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/text/qfontdatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/text/qfontdatabase.cpp b/src/gui/text/qfontdatabase.cpp index 139139f..e6c36a4 100644 --- a/src/gui/text/qfontdatabase.cpp +++ b/src/gui/text/qfontdatabase.cpp @@ -413,7 +413,7 @@ struct QtFontFamily bool fixedPitchComputed : 1; #endif #ifdef Q_WS_X11 - bool symbol_checked; + bool symbol_checked : 1; #endif QString name; |