diff options
| -rw-r--r-- | indra/llui/llconsole.cpp | 4 | ||||
| -rw-r--r-- | indra/llui/llconsole.h | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/indra/llui/llconsole.cpp b/indra/llui/llconsole.cpp index 59499f987b..0237c80efa 100644 --- a/indra/llui/llconsole.cpp +++ b/indra/llui/llconsole.cpp @@ -66,7 +66,9 @@ LLConsole::LLConsole(const LLConsole::Params& p)  :	LLUICtrl(p),  	LLFixedBuffer(p.max_lines),  	mLinePersistTime(p.persist_time), // seconds -	mFont(p.font) +	mFont(p.font), +	mConsoleWidth(0), +	mConsoleHeight(0)  {  	if (p.font_size_index.isProvided())  	{ diff --git a/indra/llui/llconsole.h b/indra/llui/llconsole.h index 5800a82922..4719950f28 100644 --- a/indra/llui/llconsole.h +++ b/indra/llui/llconsole.h @@ -150,8 +150,6 @@ private:  	F32			mLinePersistTime; // Age at which to stop drawing.  	F32			mFadeTime; // Age at which to start fading  	const LLFontGL*	mFont; -	S32			mLastBoxHeight; -	S32			mLastBoxWidth;  	S32			mConsoleWidth;  	S32			mConsoleHeight;  | 
