From b7ef79f1b7fd9a3c365acba5f89b28bc59f5da07 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Fri, 8 Mar 2019 13:53:43 -0500 Subject: [PATCH] Fix missing return statement, thanks for the heads up, Router! --- indra/newview/llfloatermarketplacelistings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfloatermarketplacelistings.h b/indra/newview/llfloatermarketplacelistings.h index cb590b5d0..a44d2f060 100644 --- a/indra/newview/llfloatermarketplacelistings.h +++ b/indra/newview/llfloatermarketplacelistings.h @@ -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(); }