From 330bf08c9ba10ffa607bd7ef7bdc4b1f69022ece Mon Sep 17 00:00:00 2001 From: Shyotl Date: Sun, 17 Jul 2011 19:10:22 -0500 Subject: [PATCH] Telport history cleanup. I didn't need these static functions, so away they go. --- indra/newview/llfloaterteleporthistory.h | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/indra/newview/llfloaterteleporthistory.h b/indra/newview/llfloaterteleporthistory.h index feed44bc5..8b79f2510 100644 --- a/indra/newview/llfloaterteleporthistory.h +++ b/indra/newview/llfloaterteleporthistory.h @@ -43,7 +43,7 @@ #include "llfloater.h" #include "llscrolllistctrl.h" -class LLFloaterTeleportHistory : public LLFloater, public LLUISingleton +class LLFloaterTeleportHistory : public LLFloater, public LLUISingleton> { public: LLFloaterTeleportHistory(const LLSD& seed); @@ -95,21 +95,6 @@ private: std::string mPendingSimString; std::string mPendingTimeString; std::string mPendingSLURL; - -public: - // visibility policy for LLUISingleton - static bool visible(LLFloater* instance, const LLSD& key) - { - return VisibilityPolicy::visible(instance, key); - } - static void show(LLFloater* instance, const LLSD& key) - { - VisibilityPolicy::show(instance, key); - } - static void hide(LLFloater* instance, const LLSD& key) - { - VisibilityPolicy::hide(instance, key); - } }; #endif