diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2010-11-03 22:11:20 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2010-11-03 22:11:20 +0000 |
| commit | 644fe622830a2319e84bdb40282b65c4115ebe27 (patch) | |
| tree | a6a943b9af2ef2e97d42e655bd179f88d4388012 /src | |
| parent | cac40a9b024185cfa5f10d5e7845582ab30a5dd1 (diff) | |
Uninitialized variable.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7793 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Text_Display.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Text_Display.cxx b/src/Fl_Text_Display.cxx index 4fb6352ba..e4303957e 100644 --- a/src/Fl_Text_Display.cxx +++ b/src/Fl_Text_Display.cxx @@ -1410,7 +1410,7 @@ int Fl_Text_Display::handle_vline( } // draw the line - style = position_style(lineStartPos, lineLen, i); + style = position_style(lineStartPos, lineLen, 0); for (i=0; i<lineLen; ) { int len = fl_utf8len(lineStr[i]); charStyle = position_style(lineStartPos, lineLen, i); |
