diff options
author | Don Kjer <don@lindenlab.com> | 2013-03-13 21:01:50 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2013-03-13 21:01:50 +0000 |
commit | 9150757c8179f06058c41b967a69f95e03c3e619 (patch) | |
tree | dae8603163e590907b034cc8651db267026a13d3 /indra/newview/llworldmapview.cpp | |
parent | cec50f8c142f4ff5f8358d9fa27884dd14f77eff (diff) |
More fixes for gcc-4.6 breakage
Diffstat (limited to 'indra/newview/llworldmapview.cpp')
-rw-r--r-- | indra/newview/llworldmapview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llworldmapview.cpp b/indra/newview/llworldmapview.cpp index ffb0964499..c82fc50812 100644 --- a/indra/newview/llworldmapview.cpp +++ b/indra/newview/llworldmapview.cpp @@ -965,7 +965,7 @@ void LLWorldMapView::drawTracking(const LLVector3d& pos_global, const LLColor4& S32 text_x = x; S32 text_y = (S32)(y - sTrackCircleImage->getHeight()/2 - font->getLineHeight()); - BOOL is_in_window = true; + //BOOL is_in_window = true; if( x < 0 || y < 0 @@ -979,7 +979,7 @@ void LLWorldMapView::drawTracking(const LLVector3d& pos_global, const LLColor4& text_x = sTrackingArrowX; text_y = sTrackingArrowY; } - is_in_window = false; + //is_in_window = false; } else if (LLTracker::getTrackingStatus() == LLTracker::TRACKING_LOCATION && LLTracker::getTrackedLocationType() != LLTracker::LOCATION_NOTHING) |