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 /test/paintertest.cc | |
parent | 4de65ee303837504e6c05f5d71d94c8b23a0270d (diff) |
Fix another crash in the font renderer.
Diffstat (limited to 'test/paintertest.cc')
-rw-r--r-- | test/paintertest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/paintertest.cc b/test/paintertest.cc index 69b28ff..f1c2779 100644 --- a/test/paintertest.cc +++ b/test/paintertest.cc @@ -117,7 +117,7 @@ public: // Success criterion is simply to not assert in the drawing routines... GUI::Font font; // a string with unicode characters - std::string someText = "Hello World - лæ"; + std::string someText = "Hello World - лæ Библиотека"; std::size_t width = font.textWidth(someText); std::size_t height = font.textHeight(someText); |