summaryrefslogtreecommitdiff
path: root/indra/newview/llhints.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-08-12 12:20:47 -0700
committerRichard Linden <none@none>2010-08-12 12:20:47 -0700
commit00e4fb0ac8431bda3705c218a548557cfca7e749 (patch)
treedd006c79cad8cdf9309290272597d9d2a0e93e8b /indra/newview/llhints.h
parent657e462b6a46bee09fe91e84ea37763db79c868c (diff)
parentbd897431e14aff091d5f45425816ddec4b2538c7 (diff)
Automated merge with http://10.1.4.28:8000/
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;
};