diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llpanellogin.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-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/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 | ||