diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-01-05 16:47:05 -0500 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-01-05 16:47:05 -0500 | 
| commit | e90fbe5b270d8083e9a8e12dacf3e016131938cf (patch) | |
| tree | d05136739d0ada9c1909835401c64cfdfd1ada06 | |
| parent | 2b6348654275a41494eaf4046acbc611af353a9a (diff) | |
| parent | 5a99682d16059a486ffa75aee938e3570e54c0c6 (diff) | |
merge
| -rw-r--r-- | indra/llaudio/llstreamingaudio_fmod.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/app_settings/settings.xml | 2 | ||||
| -rw-r--r-- | indra/newview/llviewermedia_streamingaudio.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewerparcelmedia.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llviewerparcelmgr.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewertexture.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_outfits_inventory.xml | 26 | 
7 files changed, 21 insertions, 21 deletions
| diff --git a/indra/llaudio/llstreamingaudio_fmod.cpp b/indra/llaudio/llstreamingaudio_fmod.cpp index a71a87203c..a4620fa13c 100644 --- a/indra/llaudio/llstreamingaudio_fmod.cpp +++ b/indra/llaudio/llstreamingaudio_fmod.cpp @@ -174,7 +174,7 @@ void LLStreamingAudio_FMOD::update()  		break;  	case -3:  		// failed to open, file not found, perhaps -		llwarns << "InternetSteam - failed to open" << llendl; +		llwarns << "InternetStream - failed to open" << llendl;  		stop();  		return;  	case -4: diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index e24e1a8605..359f4abe56 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -276,7 +276,7 @@        <key>Value</key>        <real>0.5</real>      </map> -	<key>AudioSteamingMedia</key> +	<key>AudioStreamingMedia</key>      <map>        <key>Comment</key>        <string>Enable streaming</string> diff --git a/indra/newview/llviewermedia_streamingaudio.cpp b/indra/newview/llviewermedia_streamingaudio.cpp index e9293ac5a4..67b051e536 100644 --- a/indra/newview/llviewermedia_streamingaudio.cpp +++ b/indra/newview/llviewermedia_streamingaudio.cpp @@ -62,7 +62,7 @@ void LLStreamingAudio_MediaPlugins::start(const std::string& url)  	if (!mMediaPlugin) // lazy-init the underlying media plugin  	{  		mMediaPlugin = initializeMedia("audio/mpeg"); // assumes that whatever media implementation supports mp3 also supports vorbis. -		llinfos << "steaming audio mMediaPlugin is now " << mMediaPlugin << llendl; +		llinfos << "streaming audio mMediaPlugin is now " << mMediaPlugin << llendl;  	}  	if(!mMediaPlugin) diff --git a/indra/newview/llviewerparcelmedia.cpp b/indra/newview/llviewerparcelmedia.cpp index 90a7ee98b9..86f0f4e04e 100644 --- a/indra/newview/llviewerparcelmedia.cpp +++ b/indra/newview/llviewerparcelmedia.cpp @@ -182,7 +182,7 @@ void LLViewerParcelMedia::play(LLParcel* parcel)  	if (!parcel) return; -	if (!gSavedSettings.getBOOL("AudioSteamingMedia") || !gSavedSettings.getBOOL("AudioStreamingVideo")) +	if (!gSavedSettings.getBOOL("AudioStreamingMedia") || !gSavedSettings.getBOOL("AudioStreamingVideo"))  		return;  	std::string media_url = parcel->getMediaURL(); @@ -594,8 +594,8 @@ bool callback_play_media(const LLSD& notification, const LLSD& response, LLParce  	if (option == 0)  	{  		gSavedSettings.setBOOL("AudioStreamingVideo", TRUE); -		if(!gSavedSettings.getBOOL("AudioSteamingMedia"))  -			gSavedSettings.setBOOL("AudioSteamingMedia", TRUE); +		if(!gSavedSettings.getBOOL("AudioStreamingMedia"))  +			gSavedSettings.setBOOL("AudioStreamingMedia", TRUE);  		LLViewerParcelMedia::play(parcel);  	}  	else diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp index be68a2ef42..87a9eae028 100644 --- a/indra/newview/llviewerparcelmgr.cpp +++ b/indra/newview/llviewerparcelmgr.cpp @@ -1754,7 +1754,7 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  void optionally_start_music(const std::string& music_url)  { -	if (gSavedSettings.getBOOL("AudioStreamingMusic") && gSavedSettings.getBOOL("AudioSteamingMedia")) +	if (gSavedSettings.getBOOL("AudioStreamingMusic") && gSavedSettings.getBOOL("AudioStreamingMedia"))  	{  		// Make the user click the start button on the overlay bar. JC  		//		llinfos << "Starting parcel music " << music_url << llendl; diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index b1ad01f54f..f825eaa8ab 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -2767,7 +2767,7 @@ void LLViewerMediaTexture::updateClass()  #if 0  	//force to play media. -	gSavedSettings.setBOOL("AudioSteamingMedia", true) ; +	gSavedSettings.setBOOL("AudioStreamingMedia", true) ;  	gSavedSettings.setBOOL("AudioStreamingVideo", true) ;  #endif diff --git a/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml b/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml index d6d8e9562b..7e512f9594 100644 --- a/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml +++ b/indra/newview/skins/default/xui/en/panel_outfits_inventory.xml @@ -21,19 +21,6 @@       tab_position="top"       halign="center"       width="313"> -      <inventory_panel -        label="MY OUTFITS" -        help_topic="my_outfits_tab" -	    allow_multi_select="true" -	    follows="all" -	    border="false" -	    left="0" -        top="0" -        height="500" -        width="290" - 		mouse_opaque="true" - 	    name="outfitslist_accordionpanel" - 		start_folder="My Outfits" />            <inventory_panel          label="WEARING"          help_topic="now_wearing_tab" @@ -46,6 +33,19 @@          mouse_opaque="true"          name="cof_accordionpanel"          start_folder="Current Outfit" /> +         <inventory_panel +           label="MY OUTFITS" +           help_topic="my_outfits_tab" +           allow_multi_select="true" +           follows="all" +           border="false" +           left="0" +           top="0" +           height="500" +           width="290" +           mouse_opaque="true" +           name="outfitslist_accordionpanel" +           start_folder="My Outfits" />      </tab_container>  	<panel  	  background_visible="true" | 
