diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-04-04 16:38:53 +0300 |
---|---|---|
committer | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-04-04 16:38:53 +0300 |
commit | 58092382269eb8dc48fb30734ee3738f7385f8da (patch) | |
tree | 95bda2ad3033f782ceb991934439efcdd9eeae45 /indra/newview/llconversationmodel.h | |
parent | 7ccfbd7c285cc2ab0bbf569912f8e9e2d5c1df72 (diff) |
SL-19273 Show empty folder message for empty folders regardless of filter state
Diffstat (limited to 'indra/newview/llconversationmodel.h')
-rw-r--r-- | indra/newview/llconversationmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationmodel.h b/indra/newview/llconversationmodel.h index 22d2d60905..3f607d434e 100644 --- a/indra/newview/llconversationmodel.h +++ b/indra/newview/llconversationmodel.h @@ -250,7 +250,7 @@ public: bool check(const LLFolderViewModelItem* item) { return true; } bool checkFolder(const LLFolderViewModelItem* folder) const { return true; } void setEmptyLookupMessage(const std::string& message) { } - std::string getEmptyLookupMessage() const { return mEmpty; } + std::string getEmptyLookupMessage(bool is_empty_folder = false) const { return mEmpty; } bool showAllResults() const { return true; } std::string::size_type getStringMatchOffset(LLFolderViewModelItem* item) const { return std::string::npos; } std::string::size_type getFilterStringSize() const { return 0; } |