summaryrefslogtreecommitdiff
path: root/indra/llui/llflashtimer.h
diff options
context:
space:
mode:
authormaksymsproductengine <maksymsproductengine@lindenlab.com>2012-11-21 01:41:49 +0200
committermaksymsproductengine <maksymsproductengine@lindenlab.com>2012-11-21 01:41:49 +0200
commitedeeed95416be2679e1ad3d29bab5396dbcccaa2 (patch)
tree14699bebd00d0a4330fed43c3aa47f83259cf9f2 /indra/llui/llflashtimer.h
parent7f19e6de5c55c1a28d329fbd6dea728f48b99495 (diff)
CHUI-531 FIXED Poor fps in CHUI viewer
Diffstat (limited to 'indra/llui/llflashtimer.h')
-rw-r--r--indra/llui/llflashtimer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/llflashtimer.h b/indra/llui/llflashtimer.h
index 2ef6ebcc8a..538ee0fcca 100644
--- a/indra/llui/llflashtimer.h
+++ b/indra/llui/llflashtimer.h
@@ -50,8 +50,8 @@ public:
void startFlashing();
void stopFlashing();
- bool isFlashing() {return mIsFlashing;}
- bool isHighlight() {return mIsHighlight;}
+ bool isFlashingInProgress() {return mIsFlashingInProgress;}
+ bool isCurrentlyHighlighted() {return mIsCurrentlyHighlighted;}
private:
callback_t mCallback;
@@ -60,8 +60,8 @@ private:
*/
S32 mFlashCount;
S32 mCurrentTickCount;
- bool mIsHighlight;
- bool mIsFlashing;
+ bool mIsCurrentlyHighlighted;
+ bool mIsFlashingInProgress;
};
#endif /* LL_FLASHTIMER_H */