summaryrefslogtreecommitdiff
path: root/indra/newview/llhints.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llhints.h')
-rw-r--r--indra/newview/llhints.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llhints.h b/indra/newview/llhints.h
index b5255db95b..4ecdc9937c 100644
--- a/indra/newview/llhints.h
+++ b/indra/newview/llhints.h
@@ -41,10 +41,13 @@ class LLHints
{
public:
static void show(LLNotificationPtr hint);
+ static void hide(LLNotificationPtr hint);
static void registerHintTarget(const std::string& name, LLHandle<LLView> target);
static LLHandle<LLView> getHintTarget(const std::string& name);
private:
static LLRegistry<std::string, LLHandle<LLView> > sTargetRegistry;
+ typedef std::map<LLNotificationPtr, class LLHintPopup*> hint_map_t;
+ static hint_map_t sHints;
};