summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Arabadji <aarabadji@productengine.com>2010-01-22 15:02:51 +0200
committerAlexei Arabadji <aarabadji@productengine.com>2010-01-22 15:02:51 +0200
commitfd44fbd4efb73ca4ff4525877619e0951a0deba1 (patch)
tree24009448776aa0b6fe3acfe0068979efe8161e63
parentd18c46bc15dc1f42c4119a3af9e5284335333475 (diff)
made LLTransientFloaterMgr constructor protected;
--HG-- branch : product-engine
-rw-r--r--indra/newview/lltransientfloatermgr.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/lltransientfloatermgr.h b/indra/newview/lltransientfloatermgr.h
index aecc5a505d..1f99325a7f 100644
--- a/indra/newview/lltransientfloatermgr.h
+++ b/indra/newview/lltransientfloatermgr.h
@@ -44,13 +44,16 @@ class LLTransientFloater;
*/
class LLTransientFloaterMgr: public LLSingleton<LLTransientFloaterMgr>
{
+protected:
+ LLTransientFloaterMgr();
+ friend class LLSingleton<LLTransientFloaterMgr>;
+
public:
enum ETransientGroup
{
GLOBAL, IM
};
- LLTransientFloaterMgr();
void registerTransientFloater(LLTransientFloater* floater);
void unregisterTransientFloater(LLTransientFloater* floater);
void addControlView(ETransientGroup group, LLView* view);