diff options
| author | Richard Linden <none@none> | 2011-11-10 16:02:57 -0800 |
|---|---|---|
| committer | Richard Linden <none@none> | 2011-11-10 16:02:57 -0800 |
| commit | 0c9d8d917a4281e2dea7fa2044e86735caca2aa9 (patch) | |
| tree | 6b77b3c5292cc176ee6f460522cbede04920bf3d /indra/newview/llfloaterwebcontent.cpp | |
| parent | 7e6e3d20f334547d8cea78e8e0b37106efebe028 (diff) | |
fixed build
fixed handle downcast not initiating handle
Diffstat (limited to 'indra/newview/llfloaterwebcontent.cpp')
| -rw-r--r-- | indra/newview/llfloaterwebcontent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterwebcontent.cpp b/indra/newview/llfloaterwebcontent.cpp index f410c31f44..d6db7aa6ad 100644 --- a/indra/newview/llfloaterwebcontent.cpp +++ b/indra/newview/llfloaterwebcontent.cpp @@ -167,7 +167,7 @@ LLFloater* LLFloaterWebContent::create( Params p) //static void LLFloaterWebContent::closeRequest(const std::string &uuid) { - LLFloaterWebContent* floaterp = getInstance(uuid); + LLFloaterWebContent* floaterp = instance_tracker_t::getInstance(uuid); if (floaterp) { floaterp->closeFloater(false); @@ -177,7 +177,7 @@ void LLFloaterWebContent::closeRequest(const std::string &uuid) //static void LLFloaterWebContent::geometryChanged(const std::string &uuid, S32 x, S32 y, S32 width, S32 height) { - LLFloaterWebContent* floaterp = getInstance(uuid); + LLFloaterWebContent* floaterp = instance_tracker_t::getInstance(uuid); if (floaterp) { floaterp->geometryChanged(x, y, width, height); |
