diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-09-06 14:24:41 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-09-06 14:24:41 +0200 |
commit | 8717bae5f4a141911ba58b34b6ac630780e089ed (patch) | |
tree | 75619c95b7f536a560c81e6da5f45a89f4c1438c /plugingui/font.h | |
parent | 4de65ee303837504e6c05f5d71d94c8b23a0270d (diff) |
Fix another crash in the font renderer.
Diffstat (limited to 'plugingui/font.h')
-rw-r--r-- | plugingui/font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/font.h b/plugingui/font.h index e18f1bd..84e1f63 100644 --- a/plugingui/font.h +++ b/plugingui/font.h @@ -51,8 +51,8 @@ private: class Character { public: - int offset{0}; - size_t width{0}; + std::size_t offset{0}; + std::size_t width{0}; int pre_bias{0}; int post_bias{0}; }; |