diff options
author | Richard Linden <none@none> | 2011-07-12 20:58:30 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-07-12 20:58:30 -0700 |
commit | fa3f4d11665af44234f8e0ae3e8d8c0ce31d356d (patch) | |
tree | 475ebb59957a9009b06f16e79a43bf1e122cd56f /indra/llui/llfloater.h | |
parent | 7f2ccaae7d7d15f3bdb7e9a4a4a6f19b1aa812e9 (diff) |
EXP-880 FIX Enable navigation chrome for Search floater
search floater derives from floater_web_content
all web content now uses floater_web_content instead of media_browser
Diffstat (limited to 'indra/llui/llfloater.h')
-rw-r--r-- | indra/llui/llfloater.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfloater.h b/indra/llui/llfloater.h index 5b7b020881..9aae1afc62 100644 --- a/indra/llui/llfloater.h +++ b/indra/llui/llfloater.h @@ -253,7 +253,7 @@ public: LLHandle<LLFloater> getHandle() const { return mHandle; } const LLSD& getKey() { return mKey; } - BOOL matchesKey(const LLSD& key) { return mSingleInstance || KeyCompare::equate(key, mKey); } + virtual bool matchesKey(const LLSD& key) { return mSingleInstance || KeyCompare::equate(key, mKey); } const std::string& getInstanceName() { return mInstanceName; } |