diff options
author | Richard Linden <none@none> | 2010-09-17 23:12:13 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-09-17 23:12:13 -0700 |
commit | 325991a002894011b1da8dd54b16b4cb15f77554 (patch) | |
tree | 96d0412fe46eb0011f1481a7b84a964cfa86a094 /indra/newview/llhints.h | |
parent | 2deaa895de081982f4191db0810aa470da5348a2 (diff) |
EXP-60 Hints not showing after Re-enabling Hints in same session
Diffstat (limited to 'indra/newview/llhints.h')
-rw-r--r-- | indra/newview/llhints.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llhints.h b/indra/newview/llhints.h index 3bca7f00a1..ebffe561b9 100644 --- a/indra/newview/llhints.h +++ b/indra/newview/llhints.h @@ -31,18 +31,19 @@ #include "llnotifications.h" -class LLHints +class LLHints : public LLInitClass<LLHints> { public: static void show(LLNotificationPtr hint); static void hide(LLNotificationPtr hint); - static void hideAll(); static void registerHintTarget(const std::string& name, LLHandle<LLView> target); static LLHandle<LLView> getHintTarget(const std::string& name); + static void initClass(); private: static LLRegistry<std::string, LLHandle<LLView> > sTargetRegistry; typedef std::map<LLNotificationPtr, class LLHintPopup*> hint_map_t; static hint_map_t sHints; + static void showHints(const LLSD& show); }; |