diff options
author | Richard Linden <none@none> | 2012-06-27 18:56:10 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-06-27 18:56:10 -0700 |
commit | cb865a7e1300d4ce0bedae7c856fb210b68a43f8 (patch) | |
tree | 5a792a9f87692c85f1b3470931a162c0af9b48bf /indra/newview/llinventorybridge.h | |
parent | 5b6db72c5b7c5c3c4cfde671480ec1fc56bbd859 (diff) |
CHUI-101 WIP Make LLFolderView general purpose
moved filtering logic to viewmodel
Diffstat (limited to 'indra/newview/llinventorybridge.h')
-rw-r--r-- | indra/newview/llinventorybridge.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llinventorybridge.h b/indra/newview/llinventorybridge.h index 26789627f7..b0582d003d 100644 --- a/indra/newview/llinventorybridge.h +++ b/indra/newview/llinventorybridge.h @@ -88,6 +88,8 @@ public: //-------------------------------------------------------------------- virtual const std::string& getName() const; virtual const std::string& getDisplayName() const; + const std::string& getSearchableName() const { return mSearchableName; } + virtual PermissionMask getPermissionMask() const; virtual LLFolderType::EType getPreferredType() const; virtual time_t getCreationDate() const; @@ -174,6 +176,7 @@ protected: bool mIsLink; LLTimer mTimeSinceRequestStart; mutable std::string mDisplayName; + mutable std::string mSearchableName; void purgeItem(LLInventoryModel *model, const LLUUID &uuid); virtual void buildDisplayName() const {} |