From 6fbb35b712d25843d9fe10945a232749a89601c5 Mon Sep 17 00:00:00 2001
From: Graham Linden <graham@lindenlab.com>
Date: Mon, 12 Aug 2019 14:39:24 -0700
Subject: [PATCH] Fix line-endings on new inline file.

---
 indra/llrender/lluiimage.inl | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/indra/llrender/lluiimage.inl b/indra/llrender/lluiimage.inl
index 3b23d77d62b..f5227556f0b 100644
--- a/indra/llrender/lluiimage.inl
+++ b/indra/llrender/lluiimage.inl
@@ -64,14 +64,14 @@ void LLUIImage::drawBorder(S32 x, S32 y, S32 width, S32 height, const LLColor4&
 }
 
 // returns dimensions of underlying textures, which might not be equal to ui image portion
-S32 LLUIImage::getTextureWidth() const
-{
-    mCachedW = (mCachedW == -1) ? getWidth() : mCachedW;
-    return mCachedW;
-}
-
-S32 LLUIImage::getTextureHeight() const
-{
-    mCachedH = (mCachedH == -1) ? getHeight() : mCachedH;
-    return mCachedH;
-}
+S32 LLUIImage::getTextureWidth() const
+{
+    mCachedW = (mCachedW == -1) ? getWidth() : mCachedW;
+    return mCachedW;
+}
+
+S32 LLUIImage::getTextureHeight() const
+{
+    mCachedH = (mCachedH == -1) ? getHeight() : mCachedH;
+    return mCachedH;
+}
-- 
GitLab