diff --git a/indra/llcommon/llregistry.h b/indra/llcommon/llregistry.h
index ca6d76a98..bb0d60247 100644
--- a/indra/llcommon/llregistry.h
+++ b/indra/llcommon/llregistry.h
@@ -307,8 +307,10 @@ public:
virtual ~StaticRegistrar() {}
StaticRegistrar(ref_const_key_t key, ref_const_value_t value)
{
- if(!singleton_t::instance().mStaticScope)
- mStaticScope = new ScopedRegistrar();
+ if (singleton_t::instance().exists(key))
+ {
+ llerrs << "Duplicate registry entry under key \"" << key << "\"" << llendl;
+ }
singleton_t::instance().mStaticScope->add(key, value);
}
};
@@ -338,7 +340,7 @@ protected:
virtual void initSingleton()
{
- //mStaticScope = new ScopedRegistrar();
+ mStaticScope = new ScopedRegistrar();
}
virtual ~LLRegistrySingleton()
diff --git a/indra/llmessage/aihttptimeoutpolicy.cpp b/indra/llmessage/aihttptimeoutpolicy.cpp
index a37a9f916..4434ef545 100644
--- a/indra/llmessage/aihttptimeoutpolicy.cpp
+++ b/indra/llmessage/aihttptimeoutpolicy.cpp
@@ -905,12 +905,8 @@ AIHTTPTimeoutPolicy const* AIHTTPTimeoutPolicy::getTimeoutPolicyByName(std::stri
#define P2(n, b) AIHTTPTimeoutPolicy n##_timeout(#n, b)
// Policy name Policy
-//P(accountingCostResponder);
-P(agentStateResponder);
-P(appearanceChangeMetricsResponder);
P(assetUploadResponder);
P(assetReportHandler);
-P(asyncConsoleResponder);
P(avatarPickerResponder);
P(authHandler);
P(avatarNameResponder);
@@ -918,15 +914,11 @@ P2(baseCapabilitiesComplete, transfer_18s_connect_5s);
P(blockingLLSDPost);
P(blockingLLSDGet);
P(blockingRawGet);
-P(charactersResponder);
-P(checkAgentAppearanceServiceResponder);
P(classifiedStatsResponder);
-P(consoleResponder);
P(createInventoryCategoryResponder);
P(emeraldDicDownloader);
P(environmentApplyResponder);
P(environmentRequestResponder);
-P(estateChangeInfoResponder);
P2(eventPollResponder, reply_60s);
P(fetchInventoryResponder);
P(fetchScriptLimitsAttachmentInfoResponder);
@@ -960,12 +952,8 @@ P2(meshPhysicsShapeResponder, connect_30s);
P2(meshSkinInfoResponder, connect_30s);
P(mimeDiscoveryResponder);
P(moderationResponder);
-P(navMeshRebakeResponder);
-P(navMeshResponder);
-P(navMeshStatusResponder);
P(newAgentInventoryVariablePriceResponder);
P(objectCostResponder);
-P(objectLinksetsResponder);
P(physicsFlagsResponder);
P(productInfoRequestResponder);
P(regionResponder);
@@ -977,7 +965,6 @@ P(setDisplayNameResponder);
P2(simulatorFeaturesReceived, transfer_22s_connect_10s);
P(startConferenceChatResponder);
P2(startGroupVoteResponder, transfer_300s);
-P(terrainLinksetsResponder);
P(translationReceiver);
P(uploadModelPremissionsResponder);
P(userReportResponder);
diff --git a/indra/llwindow/llkeyboard.h b/indra/llwindow/llkeyboard.h
index 80ac3acfc..c2def259b 100644
--- a/indra/llwindow/llkeyboard.h
+++ b/indra/llwindow/llkeyboard.h
@@ -28,6 +28,7 @@
#define LL_LLKEYBOARD_H
#include
+ AlchemyRainbowEffects
+
AlchemyRegionRestartShake