diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-04-20 17:30:06 -0700 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-04-20 17:30:06 -0700 |
commit | c82219934dfc20d8e4401ed875f9c59c16ab922c (patch) | |
tree | 5118ccf32f06fd89dd56e543a4ab8f85690794be /indra/llui | |
parent | 98ec4db650c2dbae0e28ae186a43218bff344b49 (diff) |
mac and linux build fixes
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llloadingindicator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llloadingindicator.cpp b/indra/llui/llloadingindicator.cpp index 8a0f875808..c4eec1835c 100644 --- a/indra/llui/llloadingindicator.cpp +++ b/indra/llui/llloadingindicator.cpp @@ -77,7 +77,7 @@ void LLLoadingIndicator::draw() start(); } - LLUIImagePtr cur_image = mImages.empty() ? NULL : mImages[mCurImageIdx]; + LLUIImagePtr cur_image = mImages.empty() ? LLUIImagePtr(NULL) : mImages[mCurImageIdx]; // Draw current image. if( cur_image.notNull() ) |