summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelgenerictip.h
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-04-20 14:11:56 +0100
committerTofu Linden <tofu.linden@lindenlab.com>2010-04-20 14:11:56 +0100
commit8ab7e2d21116f7b90b8363a071515a3b68b9e58b (patch)
tree11b0dae6e2527482aa0b94981597bc246debb61b /indra/newview/llpanelgenerictip.h
parent9fd6531dda19bda12ba7dc16a5b5020550711a97 (diff)
parent5952fbca316ba1d1e4243bf5ebd6dc647e4957f4 (diff)
merge from viewer-trunk
Diffstat (limited to 'indra/newview/llpanelgenerictip.h')
-rw-r--r--indra/newview/llpanelgenerictip.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/indra/newview/llpanelgenerictip.h b/indra/newview/llpanelgenerictip.h
index 0eb502498a..defa069727 100644
--- a/indra/newview/llpanelgenerictip.h
+++ b/indra/newview/llpanelgenerictip.h
@@ -34,14 +34,24 @@
#ifndef LL_PANELGENERICTIP_H
#define LL_PANELGENERICTIP_H
-#include "lltoastpanel.h"
+#include "llpaneltiptoast.h"
-class LLPanelGenericTip: public LLToastPanel
+/**
+ * Represents tip toast panel that contains only one child element - message text.
+ * This panel can be used for different cases of tip notifications.
+ */
+class LLPanelGenericTip: public LLPanelTipToast
{
// disallow instantiation of this class
private:
// grant privileges to instantiate this class to LLToastPanel
friend class LLToastPanel;
+ /**
+ * Generic toast tip panel.
+ * This is particular case of toast panel that decoupled from LLToastNotifyPanel.
+ * From now LLToastNotifyPanel is deprecated and will be removed after all panel
+ * types are represented in separate classes.
+ */
LLPanelGenericTip(const LLNotificationPtr& notification);
};
#endif /* LL_PANELGENERICTIP_H */