diff options
Diffstat (limited to 'indra/newview/llfloaterfonttest.cpp')
-rw-r--r-- | indra/newview/llfloaterfonttest.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/indra/newview/llfloaterfonttest.cpp b/indra/newview/llfloaterfonttest.cpp index 02791b711e..413992910e 100644 --- a/indra/newview/llfloaterfonttest.cpp +++ b/indra/newview/llfloaterfonttest.cpp @@ -42,25 +42,11 @@ #include "lluictrlfactory.h" -LLFloaterFontTest* LLFloaterFontTest::sInstance = NULL; - -LLFloaterFontTest::LLFloaterFontTest() +LLFloaterFontTest::LLFloaterFontTest(const LLSD& key) : LLFloater("floater_font_test") { - LLUICtrlFactory::getInstance()->buildFloater(this, "floater_font_test.xml"); } LLFloaterFontTest::~LLFloaterFontTest() { - sInstance = NULL; -} - -// static -void LLFloaterFontTest::show(void *unused) -{ - if (!sInstance) - sInstance = new LLFloaterFontTest(); - - sInstance->openFloater(); - sInstance->setFocus(TRUE); } |