diff options
| author | callum <none@none> | 2010-09-13 14:59:05 -0700 | 
|---|---|---|
| committer | callum <none@none> | 2010-09-13 14:59:05 -0700 | 
| commit | 22172ce23d4abe7b50dc17ea7a67ecf55a4cd5b8 (patch) | |
| tree | c557a7cefa3a92626d4edf26460c92415c6a95f8 /indra/llplugin | |
| parent | d921420a75b25339ef4650490705179dcbf45fb6 (diff) | |
EXP-56 - viewer side of support for file picker dialog requirement.
Diffstat (limited to 'indra/llplugin')
| -rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index 06ed632da8..dcbe97469b 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -957,6 +957,10 @@ void LLPluginClassMedia::receivePluginMessage(const LLPluginMessage &message)  			mMediaName = message.getValue("name");  			mediaEvent(LLPluginClassMediaOwner::MEDIA_EVENT_NAME_CHANGED);  		} +		else if(message_name == "pick_file") +		{ +			mediaEvent(LLPluginClassMediaOwner::MEDIA_EVENT_PICK_FILE_REQUEST); +		}  		else  		{  			LL_WARNS("Plugin") << "Unknown " << message_name << " class message: " << message_name << LL_ENDL; | 
