diff options
Diffstat (limited to 'linden/indra/newview/llpanellogin.h')
-rw-r--r-- | linden/indra/newview/llpanellogin.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/llpanellogin.h b/linden/indra/newview/llpanellogin.h index b15e5e7..539997b 100644 --- a/linden/indra/newview/llpanellogin.h +++ b/linden/indra/newview/llpanellogin.h | |||
@@ -58,8 +58,8 @@ class LLLoginHandler : public LLCommandHandler | |||
58 | void parse(const LLSD& queryMap); | 58 | void parse(const LLSD& queryMap); |
59 | 59 | ||
60 | LLUUID mWebLoginKey; | 60 | LLUUID mWebLoginKey; |
61 | LLString mFirstName; | 61 | std::string mFirstName; |
62 | LLString mLastName; | 62 | std::string mLastName; |
63 | }; | 63 | }; |
64 | 64 | ||
65 | extern LLLoginHandler gLoginHandler; | 65 | extern LLLoginHandler gLoginHandler; |
@@ -86,14 +86,14 @@ public: | |||
86 | static void setFields(const std::string& firstname, const std::string& lastname, | 86 | static void setFields(const std::string& firstname, const std::string& lastname, |
87 | const std::string& password, BOOL remember); | 87 | const std::string& password, BOOL remember); |
88 | 88 | ||
89 | static void addServer(const char *server, S32 domain_name); | 89 | static void addServer(const std::string& server, S32 domain_name); |
90 | static void refreshLocation( bool force_visible ); | 90 | static void refreshLocation( bool force_visible ); |
91 | 91 | ||
92 | static void getFields(LLString &firstname, LLString &lastname, | 92 | static void getFields(std::string& firstname, std::string& lastname, |
93 | LLString &password, BOOL &remember); | 93 | std::string& password, BOOL& remember); |
94 | 94 | ||
95 | static BOOL isGridComboDirty(); | 95 | static BOOL isGridComboDirty(); |
96 | static void getLocation(LLString &location); | 96 | static void getLocation(std::string &location); |
97 | 97 | ||
98 | static void close(); | 98 | static void close(); |
99 | 99 | ||