diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-03-14 17:37:56 +0200 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-03-14 17:37:56 +0200 |
commit | 2cddf137e3c785dc9efbe7e12b90d239d8eaa958 (patch) | |
tree | 938dbac491c80e337a6c212b99a5d889ce122e98 /indra/newview/lltracker.h | |
parent | b7635b6112b7c7fd448aa4400bba2edbf15a5b0a (diff) |
STORM-971 FIXED Disable the 'Stop Tracking' menu item in Mini-map floater when tracking gets stopped.
- Removed the menu from LLFloaterMap (the mini-map floater)
that had conflicted with the one in the LLNetMap widget.
- Fixed updating of the "Stop Tracking" menu item; moved that code
out of draw() to avoid excessive updates.
- Preventively fixed LLTracker::isTracking() to return strictly 1 or 0
(BOOL is known to cause hard-to-debug side effects with values > 1
because it's essentially just an int and thus doesn't enforce
any limitations on the value).
Diffstat (limited to 'indra/newview/lltracker.h')
-rw-r--r-- | indra/newview/lltracker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltracker.h b/indra/newview/lltracker.h index c0c154abe8..8e916af315 100644 --- a/indra/newview/lltracker.h +++ b/indra/newview/lltracker.h @@ -75,7 +75,7 @@ public: // these are static so that they can be used a callbacks static ETrackingStatus getTrackingStatus() { return instance()->mTrackingStatus; } static ETrackingLocationType getTrackedLocationType() { return instance()->mTrackingLocationType; } - static BOOL isTracking(void*) { return (BOOL) instance()->mTrackingStatus; } + static BOOL isTracking(void*) { return instance()->mTrackingStatus != TRACKING_NOTHING; } static void stopTracking(void*); static void clearFocus(); |