(svn r25473) -Fix: uninitialised warning

pull/155/head
rubidium 11 years ago
parent ba3eda7c1e
commit b0e63f55ba

@ -282,7 +282,7 @@ ParagraphLayout::Line *ParagraphLayout::nextLine(int max_width)
Line *l = new Line();
const WChar *begin = this->buffer;
WChar *last_space;
WChar *last_space = NULL;
const WChar *last_char = begin;
int width = 0;

Loading…
Cancel
Save