diff options
Diffstat (limited to 'linden/indra/newview/llfolderview.h')
-rw-r--r-- | linden/indra/newview/llfolderview.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/newview/llfolderview.h b/linden/indra/newview/llfolderview.h index ec70b90..9482b96 100644 --- a/linden/indra/newview/llfolderview.h +++ b/linden/indra/newview/llfolderview.h | |||
@@ -236,6 +236,9 @@ public: | |||
236 | //RN: this is public to allow system to externally force a global refilter | 236 | //RN: this is public to allow system to externally force a global refilter |
237 | void setModified(EFilterBehavior behavior = FILTER_RESTART); | 237 | void setModified(EFilterBehavior behavior = FILTER_RESTART); |
238 | 238 | ||
239 | void toLLSD(LLSD& data); | ||
240 | void fromLLSD(LLSD& data); | ||
241 | |||
239 | protected: | 242 | protected: |
240 | struct filter_ops | 243 | struct filter_ops |
241 | { | 244 | { |
@@ -859,6 +862,9 @@ public: | |||
859 | static void idle(void* user_data); | 862 | static void idle(void* user_data); |
860 | 863 | ||
861 | BOOL needsAutoSelect() { return mNeedsAutoSelect && !mAutoSelectOverride; } | 864 | BOOL needsAutoSelect() { return mNeedsAutoSelect && !mAutoSelectOverride; } |
865 | BOOL needsAutoRename() { return mNeedsAutoRename; } | ||
866 | void setNeedsAutoRename(BOOL val) { mNeedsAutoRename = val; } | ||
867 | |||
862 | BOOL getDebugFilters() { return mDebugFilters; } | 868 | BOOL getDebugFilters() { return mDebugFilters; } |
863 | 869 | ||
864 | // DEBUG only | 870 | // DEBUG only |
@@ -890,6 +896,7 @@ protected: | |||
890 | LLCoordGL mLastScrollOffset; | 896 | LLCoordGL mLastScrollOffset; |
891 | BOOL mNeedsAutoSelect; | 897 | BOOL mNeedsAutoSelect; |
892 | BOOL mAutoSelectOverride; | 898 | BOOL mAutoSelectOverride; |
899 | BOOL mNeedsAutoRename; | ||
893 | 900 | ||
894 | BOOL mDebugFilters; | 901 | BOOL mDebugFilters; |
895 | U32 mSortOrder; | 902 | U32 mSortOrder; |