summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svx/source/tbxctrls/linectrl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx
index a47665d1bde5..617bdb8f8fbc 100644
--- a/svx/source/tbxctrls/linectrl.cxx
+++ b/svx/source/tbxctrls/linectrl.cxx
@@ -543,9 +543,9 @@ void SvxLineBox::Fill( const XDashListRef &pList )
mxLineStyleSet->InsertItem(1, Image(), pList->GetStringForUiNoLine());
// entry for solid line
- auto aBmp = pList->GetBitmapForUISolidLine();
- Size aBmpSize = aBmp.GetSizePixel();
- mxLineStyleSet->InsertItem(2, Image(aBmp), pList->GetStringForUiSolidLine());
+ const auto& rBmp = pList->GetBitmapForUISolidLine();
+ Size aBmpSize = rBmp.GetSizePixel();
+ mxLineStyleSet->InsertItem(2, Image(rBmp), pList->GetStringForUiSolidLine());
// entries for dashed lines
tools::Long nCount = pList->Count();