aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpaneldirbrowser.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llpaneldirbrowser.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/newview/llpaneldirbrowser.h')
-rw-r--r--linden/indra/newview/llpaneldirbrowser.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/linden/indra/newview/llpaneldirbrowser.h b/linden/indra/newview/llpaneldirbrowser.h
index 46d1369..aa7b0f5 100644
--- a/linden/indra/newview/llpaneldirbrowser.h
+++ b/linden/indra/newview/llpaneldirbrowser.h
@@ -94,13 +94,10 @@ public:
94 static void sendDirFindQuery( 94 static void sendDirFindQuery(
95 LLMessageSystem* msg, 95 LLMessageSystem* msg,
96 const LLUUID& query_id, 96 const LLUUID& query_id,
97 const LLString& text, 97 const std::string& text,
98 U32 flags, 98 U32 flags,
99 S32 query_start); 99 S32 query_start);
100 100
101 // Put an item in the first line of the results list.
102 void addHelpText(const char* text);
103
104 void newClassified(); 101 void newClassified();
105 102
106 void showEvent(const U32 event_id); 103 void showEvent(const U32 event_id);
@@ -123,8 +120,8 @@ public:
123protected: 120protected:
124 void updateResultCount(); 121 void updateResultCount();
125 122
126 void addClassified(LLCtrlListInterface *list, const LLUUID& classified_id, const char* name, const U32 creation_date, const S32 price_for_listing); 123 void addClassified(LLCtrlListInterface *list, const LLUUID& classified_id, const std::string& name, const U32 creation_date, const S32 price_for_listing);
127 LLSD createLandSale(const LLUUID& parcel_id, BOOL is_auction, BOOL is_for_sale, const LLString& name, S32 *type); 124 LLSD createLandSale(const LLUUID& parcel_id, BOOL is_auction, BOOL is_for_sale, const std::string& name, S32 *type);
128 125
129 static void onKeystrokeName(LLLineEditor* line, void* data); 126 static void onKeystrokeName(LLLineEditor* line, void* data);
130 127
@@ -136,7 +133,7 @@ protected:
136protected: 133protected:
137 LLUUID mSearchID; // Unique ID for a pending search 134 LLUUID mSearchID; // Unique ID for a pending search
138 LLUUID mWantSelectID; // scroll item to select on arrival 135 LLUUID mWantSelectID; // scroll item to select on arrival
139 LLString mCurrentSortColumn; 136 std::string mCurrentSortColumn;
140 BOOL mCurrentSortAscending; 137 BOOL mCurrentSortAscending;
141 // Some searches return a max of 100 items per page, so we can 138 // Some searches return a max of 100 items per page, so we can
142 // start the search from the 100th item rather than the 0th, etc. 139 // start the search from the 100th item rather than the 0th, etc.