diff options
Diffstat (limited to 'linden/indra/newview/llpaneldirbrowser.h')
-rw-r--r-- | linden/indra/newview/llpaneldirbrowser.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/linden/indra/newview/llpaneldirbrowser.h b/linden/indra/newview/llpaneldirbrowser.h index c814786..e27b552 100644 --- a/linden/indra/newview/llpaneldirbrowser.h +++ b/linden/indra/newview/llpaneldirbrowser.h | |||
@@ -17,7 +17,8 @@ | |||
17 | * There are special exceptions to the terms and conditions of the GPL as | 17 | * There are special exceptions to the terms and conditions of the GPL as |
18 | * it is applied to this Source Code. View the full text of the exception | 18 | * it is applied to this Source Code. View the full text of the exception |
19 | * in the file doc/FLOSS-exception.txt in this software distribution, or | 19 | * in the file doc/FLOSS-exception.txt in this software distribution, or |
20 | * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception | 20 | * online at |
21 | * http://secondlifegrid.net/programs/open_source/licensing/flossexception | ||
21 | * | 22 | * |
22 | * By copying, modifying or distributing this software, you acknowledge | 23 | * By copying, modifying or distributing this software, you acknowledge |
23 | * that you have read and understood your obligations described above, | 24 | * that you have read and understood your obligations described above, |
@@ -116,6 +117,9 @@ public: | |||
116 | static void processDirLandReply(LLMessageSystem *msg, void**); | 117 | static void processDirLandReply(LLMessageSystem *msg, void**); |
117 | 118 | ||
118 | std::string filterShortWords( const std::string source_string, int shortest_word_length, bool& was_filtered ); | 119 | std::string filterShortWords( const std::string source_string, int shortest_word_length, bool& was_filtered ); |
120 | |||
121 | // Logic to control maturity checkboxes in Classified/Events/Places/'Land for Sale' tabs. | ||
122 | void updateMaturityCheckbox(); | ||
119 | 123 | ||
120 | protected: | 124 | protected: |
121 | void updateResultCount(); | 125 | void updateResultCount(); |
@@ -167,6 +171,12 @@ const S32 FOR_SALE_CODE = 6; // for sale place | |||
167 | const S32 AUCTION_CODE = 7; // for auction place | 171 | const S32 AUCTION_CODE = 7; // for auction place |
168 | const S32 POPULAR_CODE = 8; // popular by dwell | 172 | const S32 POPULAR_CODE = 8; // popular by dwell |
169 | 173 | ||
174 | // mask values for search flags | ||
175 | const S32 SEARCH_NONE = 0; // should try not to send this to the search engine | ||
176 | const S32 SEARCH_PG = 1; | ||
177 | const S32 SEARCH_MATURE = 2; | ||
178 | const S32 SEARCH_ADULT = 4; | ||
179 | |||
170 | extern LLMap< const LLUUID, LLPanelDirBrowser* > gDirBrowserInstances; | 180 | extern LLMap< const LLUUID, LLPanelDirBrowser* > gDirBrowserInstances; |
171 | 181 | ||
172 | #endif // LL_LLPANELDIRBROWSER_H | 182 | #endif // LL_LLPANELDIRBROWSER_H |