summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/AccessibleShape.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-12 17:53:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-12 17:53:03 +0100
commit34a903796c97601c4f686c8f4fc0bfca1426d8ce (patch)
tree688bd7e6291dd1d65be29b03d23bce49a6d3406d /svx/source/accessibility/AccessibleShape.cxx
parentd2177cded64d92a8c6f068192d1c4b023d49edf3 (diff)
svx: Use appropriate OUString functions on string constants
Change-Id: Ia012f2bec767cd7e7d2be9502062bea0b085fea0
Diffstat (limited to 'svx/source/accessibility/AccessibleShape.cxx')
-rw-r--r--svx/source/accessibility/AccessibleShape.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx
index 3b0c496875c8..838556bb3455 100644
--- a/svx/source/accessibility/AccessibleShape.cxx
+++ b/svx/source/accessibility/AccessibleShape.cxx
@@ -755,7 +755,7 @@ sal_Int32 SAL_CALL AccessibleShape::getBackground (void)
uno::Any aColor;
aColor = aSet->getPropertyValue ("FillColor");
aColor >>= nColor;
- aColor = aSet->getPropertyValue (OUString::createFromAscii ("FillTransparence"));
+ aColor = aSet->getPropertyValue ("FillTransparence");
short nTrans=0;
aColor >>= nTrans;
Color crBk(nColor);