summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2016-11-15 01:39:16 +0200
committerAndreyL ProductEngine <alihatskiy@productengine.com>2016-11-15 01:39:16 +0200
commit7dd8c1fc371b8940d4c19efdfb4ddf0ed83471e1 (patch)
tree20ced25eb61c718d5f8d714f13b938549d32e0d9 /indra/newview
parent7fceb3a63f0157c7075c77e6d8516079ff4d217a (diff)
Buildfix: proper constructor declaration for LLHUDRenderNotifier
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llavatarrendernotifier.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llavatarrendernotifier.h b/indra/newview/llavatarrendernotifier.h
index de65bd2e13..ec17b3d9e6 100644
--- a/indra/newview/llavatarrendernotifier.h
+++ b/indra/newview/llavatarrendernotifier.h
@@ -114,10 +114,10 @@ private:
// Class to notify user about heavy set of HUD
class LLHUDRenderNotifier : public LLSingleton<LLHUDRenderNotifier>
{
-public:
- LLHUDRenderNotifier();
+ LLSINGLETON(LLHUDRenderNotifier);
~LLHUDRenderNotifier();
+public:
void updateNotificationHUD(hud_complexity_list_t complexity);
bool isNotificationVisible();