diff options
| -rw-r--r-- | autobuild.xml | 12 | ||||
| -rw-r--r-- | indra/newview/lltexturectrl.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/lltooldraganddrop.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewerdisplay.cpp | 2 | 
4 files changed, 15 insertions, 3 deletions
| diff --git a/autobuild.xml b/autobuild.xml index 61942bf9da..387699ed47 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -1572,6 +1572,18 @@              <key>name</key>              <string>linux64</string>            </map> +          <key>windows</key> +          <map> +            <key>archive</key> +            <map> +              <key>hash</key> +              <string>2e5f1f7046a49d8b0bc295aa878116bc</string> +              <key>url</key> +              <string>http://automated-builds-secondlife-com.s3.amazonaws.com/ct2/60043/564063/llphysicsextensions_stub-1.0.542456-windows-542456.tar.bz2</string> +            </map> +            <key>name</key> +            <string>windows</string> +          </map>          </map>          <key>license</key>          <string>internal</string> diff --git a/indra/newview/lltexturectrl.cpp b/indra/newview/lltexturectrl.cpp index c70121364c..34bd8412f5 100644 --- a/indra/newview/lltexturectrl.cpp +++ b/indra/newview/lltexturectrl.cpp @@ -1530,7 +1530,7 @@ void LLFloaterTexturePicker::setInventoryPickType(EPickInventoryType type)      // refresh selection      if (!mImageAssetID.isNull() || mInventoryPickType == PICK_MATERIAL)      { -        mInventoryPanel->setSelection(findItemID(mImageAssetID, FALSE), TAKE_FOCUS_NO); +        mInventoryPanel->setSelection(findItemID(mImageAssetID, false), TAKE_FOCUS_NO);      }  } diff --git a/indra/newview/lltooldraganddrop.cpp b/indra/newview/lltooldraganddrop.cpp index 9637bdc603..304784cace 100644 --- a/indra/newview/lltooldraganddrop.cpp +++ b/indra/newview/lltooldraganddrop.cpp @@ -1159,7 +1159,7 @@ void LLToolDragAndDrop::dropTextureAllFaces(LLViewerObject* hit_obj,      if (has_non_pbr_faces || remove_pbr)      { -        BOOL res = handleDropMaterialProtections(hit_obj, item, source, src_id); +        bool res = handleDropMaterialProtections(hit_obj, item, source, src_id);          if (!res)          {              return; diff --git a/indra/newview/llviewerdisplay.cpp b/indra/newview/llviewerdisplay.cpp index ed803080c9..f8f466be45 100644 --- a/indra/newview/llviewerdisplay.cpp +++ b/indra/newview/llviewerdisplay.cpp @@ -730,8 +730,8 @@ void display(bool rebuild, F32 zoom_factor, int subfield, bool for_snapshot)  			LL_PROFILE_ZONE_NAMED_CATEGORY_DISPLAY("display - 2")  			if (gResizeScreenTexture)  			{ -				gResizeScreenTexture = false;  				gPipeline.resizeScreenTexture(); +				gResizeScreenTexture = false;  			}  			gGL.setColorMask(true, true); | 
