Fix missing return statement, thanks for the heads up, Router!

This commit is contained in:
Lirusaito
2019-03-08 13:53:43 -05:00
parent 28e464f368
commit b7ef79f1b7

View File

@@ -158,7 +158,7 @@ public:
virtual BOOL postBuild();
virtual BOOL handleKeyHere(KEY key, MASK mask);
static bool visible(LLFloaterAssociateListing* floater, const LLSD& key) { floater && !floater->isMinimized() && floater->isInVisibleChain(); }
static bool visible(LLFloaterAssociateListing* floater, const LLSD& key) { return floater && !floater->isMinimized() && floater->isInVisibleChain(); }
static void show(LLFloaterAssociateListing* floater, const LLSD& folder_id);
static void hide(LLFloaterAssociateListing* floater, const LLSD& key) { if (floater) floater->close(); }