aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/lllineeditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/lllineeditor.h')
-rw-r--r--linden/indra/llui/lllineeditor.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/llui/lllineeditor.h b/linden/indra/llui/lllineeditor.h
index a670b21..f7cff8f 100644
--- a/linden/indra/llui/lllineeditor.h
+++ b/linden/indra/llui/lllineeditor.h
@@ -259,8 +259,9 @@ protected:
259 259
260 // line history support: 260 // line history support:
261 BOOL mHaveHistory; // flag for enabled line history 261 BOOL mHaveHistory; // flag for enabled line history
262 std::vector<std::string> mLineHistory; // line history storage 262 typedef std::vector<std::string> line_history_t;
263 U32 mCurrentHistoryLine; // currently browsed history line 263 line_history_t mLineHistory; // line history storage
264 line_history_t::iterator mCurrentHistoryLine; // currently browsed history line
264 265
265 LLViewBorder* mBorder; 266 LLViewBorder* mBorder;
266 const LLFontGL* mGLFont; 267 const LLFontGL* mGLFont;