diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2010-01-22 14:47:51 +0200 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2010-01-22 14:47:51 +0200 |
commit | d18c46bc15dc1f42c4119a3af9e5284335333475 (patch) | |
tree | 11dc49c5d0b0c182931db5d3360d2cf5b8aa0512 /indra/newview/lltransientfloatermgr.cpp | |
parent | 74429f2ed926362a2ec47d590fc862b55b26f0f8 (diff) |
win build fixed
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/lltransientfloatermgr.cpp')
-rw-r--r-- | indra/newview/lltransientfloatermgr.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/lltransientfloatermgr.cpp b/indra/newview/lltransientfloatermgr.cpp index f474f47eb7..8f1a738453 100644 --- a/indra/newview/lltransientfloatermgr.cpp +++ b/indra/newview/lltransientfloatermgr.cpp @@ -139,3 +139,9 @@ void LLTransientFloaterMgr::leftMouseClickCallback(S32 x, S32 y, } } +void LLTransientFloater::init(LLFloater* thiz) +{ + // used since LLTransientFloater(this) can't be used in descendant constructor parameter initialization. + mFloater = thiz; +} + |