diff options
author | Dave Parks <davep@lindenlab.com> | 2010-03-13 22:52:53 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-03-13 22:52:53 -0600 |
commit | 663147647d270eff17e654cd13be62b18cc6db30 (patch) | |
tree | a8ed70b81266927a218df8bd9091881681a37699 /indra/llplugin/llpluginprocesschild.cpp | |
parent | 71d11af31083ced30da7b67a2a63e624c93b44a3 (diff) | |
parent | 234cd6e7c04c0840be6ae4a74eaf138e72876f44 (diff) |
merge with viewer-2-0
Diffstat (limited to 'indra/llplugin/llpluginprocesschild.cpp')
-rw-r--r-- | indra/llplugin/llpluginprocesschild.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginprocesschild.cpp b/indra/llplugin/llpluginprocesschild.cpp index 52b5a319ec..9b43ec0e3e 100644 --- a/indra/llplugin/llpluginprocesschild.cpp +++ b/indra/llplugin/llpluginprocesschild.cpp @@ -156,6 +156,7 @@ void LLPluginProcessChild::idle(void) setState(STATE_PLUGIN_INITIALIZING); LLPluginMessage message("base", "init"); message.setValue("user_data_path", mUserDataPath); + message.setValue("language_code", mLanguageCode); sendMessageToPlugin(message); } break; @@ -329,6 +330,7 @@ void LLPluginProcessChild::receiveMessageRaw(const std::string &message) { mPluginFile = parsed.getValue("file"); mUserDataPath = parsed.getValue("user_data_path"); + mLanguageCode = parsed.getValue("language_code"); } else if(message_name == "shm_add") { |