diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2009-08-18 10:12:49 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2009-08-18 10:12:49 +0000 |
commit | e1649400975bb14df906b787262111be574159f4 (patch) | |
tree | 7f7bf7f2e8b20589c84bbcf71ed85cea629eaade /vcl | |
parent | 5624be5a3520a16d57724064e16df3722d728010 (diff) |
#i10000# build fix
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/glyphs/graphite_textsrc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/glyphs/graphite_textsrc.cxx b/vcl/source/glyphs/graphite_textsrc.cxx index d2987e585281..adc2ae99c4f8 100644 --- a/vcl/source/glyphs/graphite_textsrc.cxx +++ b/vcl/source/glyphs/graphite_textsrc.cxx @@ -69,7 +69,7 @@ size_t TextSourceAdaptor::fetch(gr::toffset, size_t, gr::utf32 *) size_t TextSourceAdaptor::fetch(gr::toffset offset, size_t char_count, gr::utf16 * char_buffer) { - assert(char_buf); + assert(char_buffer); size_t copy_count = std::min(size_t(maLayoutArgs.mnLength), char_count); std::copy(maLayoutArgs.mpStr + offset, maLayoutArgs.mpStr + offset + copy_count, char_buffer); |