aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewernetwork.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-04-15 21:07:29 -0700
committerMcCabe Maxsted2011-04-15 21:07:29 -0700
commitf7df6f323e4746abae0a0858cb7ef56bedbb94ca (patch)
tree7a4a9e3be1ca658c0d72c78f413946249a38ad21 /linden/indra/newview/llviewernetwork.cpp
parenttest commit - slviewer-0-v12500-DeadObjectsFixes_v2.patch (diff)
downloadmeta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.zip
meta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.tar.gz
meta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.tar.bz2
meta-impy-f7df6f323e4746abae0a0858cb7ef56bedbb94ca.tar.xz
Updated the grid manager to save names and passwords along with grid info. This commit includes the following:
* Fixed missing GPL headers from hippo grid manager * Fixed grids named <required> or "" being saved in the list * Fixed grid manager list only showing grid nicks, not grid names * Fixed grid names not settable in the grid manager * Grid manager now remembers avatar names and passwords * Usernames can now be set in the grid manager for SL (needs work) * Fixed grid manager being stuck in an updating state * Some general code cleanup
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llviewernetwork.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llviewernetwork.cpp b/linden/indra/newview/llviewernetwork.cpp
index 1cfe665..0c39e15 100644
--- a/linden/indra/newview/llviewernetwork.cpp
+++ b/linden/indra/newview/llviewernetwork.cpp
@@ -75,7 +75,7 @@ void LLViewerLogin::getLoginURIs(std::vector<std::string>& uris) const
75 // If there was no command line uri... 75 // If there was no command line uri...
76 if(uris.empty()) 76 if(uris.empty())
77 { 77 {
78 uris.push_back(gHippoGridManager->getConnectedGrid()->getLoginUri()); 78 uris.push_back(gHippoGridManager->getConnectedGrid()->getLoginURI());
79 /* 79 /*
80 // If its a known grid choice, get the uri from the table, 80 // If its a known grid choice, get the uri from the table,
81 // else try the grid name. 81 // else try the grid name.
@@ -92,7 +92,7 @@ void LLViewerLogin::getLoginURIs(std::vector<std::string>& uris) const
92 92
93const std::string &LLViewerLogin::getGridLabel() const 93const std::string &LLViewerLogin::getGridLabel() const
94{ 94{
95 return gHippoGridManager->getConnectedGrid()->getGridNick(); 95 return gHippoGridManager->getConnectedGrid()->getGridName();
96} 96}
97 97
98const std::string &LLViewerLogin::getLoginPage() const 98const std::string &LLViewerLogin::getLoginPage() const
@@ -102,7 +102,7 @@ const std::string &LLViewerLogin::getLoginPage() const
102 102
103const std::string &LLViewerLogin::getHelperURI() const 103const std::string &LLViewerLogin::getHelperURI() const
104{ 104{
105 return gHippoGridManager->getConnectedGrid()->getHelperUri(); 105 return gHippoGridManager->getConnectedGrid()->getHelperURI();
106} 106}
107 107
108bool LLViewerLogin::isOpenSimulator() 108bool LLViewerLogin::isOpenSimulator()