diff options
author | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
commit | 8465910c79b8e746e04fd581cca2d60399e569b9 (patch) | |
tree | f43fec3e83c46e0d6190dca923d6fb268b52ffdd /linden/indra/newview/llviewerregion.cpp | |
parent | Second Life viewer sources 1.18.2.1 (diff) | |
download | meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.zip meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.gz meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.bz2 meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.xz |
Second Life viewer sources 1.18.3.2-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llviewerregion.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/linden/indra/newview/llviewerregion.cpp b/linden/indra/newview/llviewerregion.cpp index 0a21e45..6378b01 100644 --- a/linden/indra/newview/llviewerregion.cpp +++ b/linden/indra/newview/llviewerregion.cpp | |||
@@ -1207,9 +1207,9 @@ public: | |||
1207 | llinfos << "BaseCapabilitiesComplete::error " | 1207 | llinfos << "BaseCapabilitiesComplete::error " |
1208 | << statusNum << ": " << reason << llendl; | 1208 | << statusNum << ": " << reason << llendl; |
1209 | 1209 | ||
1210 | if (STATE_SEED_GRANTED_WAIT == gStartupState) | 1210 | if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState()) |
1211 | { | 1211 | { |
1212 | gStartupState = STATE_SEED_CAP_GRANTED; | 1212 | LLStartUp::setStartupState( STATE_SEED_CAP_GRANTED ); |
1213 | } | 1213 | } |
1214 | } | 1214 | } |
1215 | 1215 | ||
@@ -1223,9 +1223,9 @@ public: | |||
1223 | << iter->first << llendl; | 1223 | << iter->first << llendl; |
1224 | } | 1224 | } |
1225 | 1225 | ||
1226 | if (STATE_SEED_GRANTED_WAIT == gStartupState) | 1226 | if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState()) |
1227 | { | 1227 | { |
1228 | gStartupState = STATE_SEED_CAP_GRANTED; | 1228 | LLStartUp::setStartupState( STATE_SEED_CAP_GRANTED ); |
1229 | } | 1229 | } |
1230 | } | 1230 | } |
1231 | 1231 | ||
@@ -1275,6 +1275,8 @@ void LLViewerRegion::setSeedCapability(const std::string& url) | |||
1275 | capabilityNames.append("ParcelVoiceInfoRequest"); | 1275 | capabilityNames.append("ParcelVoiceInfoRequest"); |
1276 | capabilityNames.append("ChatSessionRequest"); | 1276 | capabilityNames.append("ChatSessionRequest"); |
1277 | capabilityNames.append("ProvisionVoiceAccountRequest"); | 1277 | capabilityNames.append("ProvisionVoiceAccountRequest"); |
1278 | capabilityNames.append("ServerReleaseNotes"); | ||
1279 | capabilityNames.append("CopyInventoryFromNotecard"); | ||
1278 | 1280 | ||
1279 | llinfos << "posting to seed " << url << llendl; | 1281 | llinfos << "posting to seed " << url << llendl; |
1280 | 1282 | ||