aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelgrouproles.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llpanelgrouproles.h')
-rw-r--r--linden/indra/newview/llpanelgrouproles.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/linden/indra/newview/llpanelgrouproles.h b/linden/indra/newview/llpanelgrouproles.h
index 83052c0..d510260 100644
--- a/linden/indra/newview/llpanelgrouproles.h
+++ b/linden/indra/newview/llpanelgrouproles.h
@@ -78,12 +78,12 @@ public:
78 static void onModalClose(S32 option, void* user_data); 78 static void onModalClose(S32 option, void* user_data);
79 79
80 // Most of these messages are just passed on to the current sub-tab. 80 // Most of these messages are just passed on to the current sub-tab.
81 virtual LLString getHelpText() const; 81 virtual std::string getHelpText() const;
82 virtual void activate(); 82 virtual void activate();
83 virtual void deactivate(); 83 virtual void deactivate();
84 virtual bool needsApply(LLString& mesg); 84 virtual bool needsApply(std::string& mesg);
85 virtual BOOL hasModal(); 85 virtual BOOL hasModal();
86 virtual bool apply(LLString& mesg); 86 virtual bool apply(std::string& mesg);
87 virtual void cancel(); 87 virtual void cancel();
88 virtual void update(LLGroupChange gc); 88 virtual void update(LLGroupChange gc);
89 89
@@ -97,8 +97,8 @@ protected:
97 BOOL mFirstUse; 97 BOOL mFirstUse;
98 BOOL mIgnoreTransition; 98 BOOL mIgnoreTransition;
99 99
100 LLString mDefaultNeedsApplyMesg; 100 std::string mDefaultNeedsApplyMesg;
101 LLString mWantApplyMesg; 101 std::string mWantApplyMesg;
102}; 102};
103 103
104class LLPanelGroupSubTab : public LLPanelGroupTab 104class LLPanelGroupSubTab : public LLPanelGroupTab
@@ -120,7 +120,7 @@ public:
120 static void onClickShowAll(void*); 120 static void onClickShowAll(void*);
121 void handleClickShowAll(); 121 void handleClickShowAll();
122 122
123 virtual void setSearchFilter( const LLString& filter ); 123 virtual void setSearchFilter( const std::string& filter );
124 124
125 virtual void activate(); 125 virtual void activate();
126 virtual void deactivate(); 126 virtual void deactivate();
@@ -154,7 +154,7 @@ protected:
154 LLButton* mSearchButton; 154 LLButton* mSearchButton;
155 LLButton* mShowAllButton; 155 LLButton* mShowAllButton;
156 156
157 LLString mSearchFilter; 157 std::string mSearchFilter;
158 158
159 icon_map_t mActionIcons; 159 icon_map_t mActionIcons;
160 160
@@ -193,8 +193,8 @@ public:
193 virtual void activate(); 193 virtual void activate();
194 virtual void deactivate(); 194 virtual void deactivate();
195 virtual void cancel(); 195 virtual void cancel();
196 virtual bool needsApply(LLString& mesg); 196 virtual bool needsApply(std::string& mesg);
197 virtual bool apply(LLString& mesg); 197 virtual bool apply(std::string& mesg);
198 virtual void update(LLGroupChange gc); 198 virtual void update(LLGroupChange gc);
199 void updateMembers(); 199 void updateMembers();
200 200
@@ -238,8 +238,8 @@ public:
238 238
239 virtual void activate(); 239 virtual void activate();
240 virtual void deactivate(); 240 virtual void deactivate();
241 virtual bool needsApply(LLString& mesg); 241 virtual bool needsApply(std::string& mesg);
242 virtual bool apply(LLString& mesg); 242 virtual bool apply(std::string& mesg);
243 virtual void cancel(); 243 virtual void cancel();
244 bool matchesSearchFilter(std::string rolename, std::string roletitle); 244 bool matchesSearchFilter(std::string rolename, std::string roletitle);
245 virtual void update(LLGroupChange gc); 245 virtual void update(LLGroupChange gc);
@@ -302,8 +302,8 @@ public:
302 302
303 virtual void activate(); 303 virtual void activate();
304 virtual void deactivate(); 304 virtual void deactivate();
305 virtual bool needsApply(LLString& mesg); 305 virtual bool needsApply(std::string& mesg);
306 virtual bool apply(LLString& mesg); 306 virtual bool apply(std::string& mesg);
307 virtual void update(LLGroupChange gc); 307 virtual void update(LLGroupChange gc);
308 308
309 static void onActionSelect(LLUICtrl*, void*); 309 static void onActionSelect(LLUICtrl*, void*);