diff options
author | Steven Bennetts <steve@lindenlab.com> | 2008-06-26 00:39:00 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2008-06-26 00:39:00 +0000 |
commit | 25c10ed028da5c547b11f1f461916897272b0e6d (patch) | |
tree | 350a5858f8970b6e28b2dc395625d74d8bd597b2 /indra/newview/llpanelgrouproles.h | |
parent | 6dd125d375b38455997a0c4b8747659f4c2351aa (diff) |
QAR-628 merge string-cleanup-5 -r 90476:90508 -> release
dataserver-is-deprecated
Diffstat (limited to 'indra/newview/llpanelgrouproles.h')
-rw-r--r-- | indra/newview/llpanelgrouproles.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/indra/newview/llpanelgrouproles.h b/indra/newview/llpanelgrouproles.h index 8d16d613e9..f55d70f018 100644 --- a/indra/newview/llpanelgrouproles.h +++ b/indra/newview/llpanelgrouproles.h @@ -78,12 +78,12 @@ public: static void onModalClose(S32 option, void* user_data); // Most of these messages are just passed on to the current sub-tab. - virtual LLString getHelpText() const; + virtual std::string getHelpText() const; virtual void activate(); virtual void deactivate(); - virtual bool needsApply(LLString& mesg); + virtual bool needsApply(std::string& mesg); virtual BOOL hasModal(); - virtual bool apply(LLString& mesg); + virtual bool apply(std::string& mesg); virtual void cancel(); virtual void update(LLGroupChange gc); @@ -97,8 +97,8 @@ protected: BOOL mFirstUse; BOOL mIgnoreTransition; - LLString mDefaultNeedsApplyMesg; - LLString mWantApplyMesg; + std::string mDefaultNeedsApplyMesg; + std::string mWantApplyMesg; }; class LLPanelGroupSubTab : public LLPanelGroupTab @@ -120,7 +120,7 @@ public: static void onClickShowAll(void*); void handleClickShowAll(); - virtual void setSearchFilter( const LLString& filter ); + virtual void setSearchFilter( const std::string& filter ); virtual void activate(); virtual void deactivate(); @@ -154,7 +154,7 @@ protected: LLButton* mSearchButton; LLButton* mShowAllButton; - LLString mSearchFilter; + std::string mSearchFilter; icon_map_t mActionIcons; @@ -193,8 +193,8 @@ public: virtual void activate(); virtual void deactivate(); virtual void cancel(); - virtual bool needsApply(LLString& mesg); - virtual bool apply(LLString& mesg); + virtual bool needsApply(std::string& mesg); + virtual bool apply(std::string& mesg); virtual void update(LLGroupChange gc); void updateMembers(); @@ -238,8 +238,8 @@ public: virtual void activate(); virtual void deactivate(); - virtual bool needsApply(LLString& mesg); - virtual bool apply(LLString& mesg); + virtual bool needsApply(std::string& mesg); + virtual bool apply(std::string& mesg); virtual void cancel(); bool matchesSearchFilter(std::string rolename, std::string roletitle); virtual void update(LLGroupChange gc); @@ -302,8 +302,8 @@ public: virtual void activate(); virtual void deactivate(); - virtual bool needsApply(LLString& mesg); - virtual bool apply(LLString& mesg); + virtual bool needsApply(std::string& mesg); + virtual bool apply(std::string& mesg); virtual void update(LLGroupChange gc); static void onActionSelect(LLUICtrl*, void*); |