summaryrefslogtreecommitdiff
path: root/sw/source/uibase/uno/unotxvw.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/uno/unotxvw.cxx')
-rw-r--r--sw/source/uibase/uno/unotxvw.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index aa30b63e9f14..f6c0c463483f 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -590,7 +590,7 @@ void SAL_CALL SwXTextView::setRubyList(
}
else if(pProperties[nProp].Name == UNO_NAME_RUBY_CHAR_STYLE_NAME)
{
- if((pProperties[nProp].Value >>= sTmp))
+ if(pProperties[nProp].Value >>= sTmp)
{
OUString sName;
SwStyleNameMapper::FillUIName(sTmp, sName, SwGetPoolIdFromName::ChrFmt, true );
@@ -605,7 +605,7 @@ void SAL_CALL SwXTextView::setRubyList(
else if(pProperties[nProp].Name == UNO_NAME_RUBY_ADJUST)
{
sal_Int16 nTmp = 0;
- if((pProperties[nProp].Value >>= nTmp))
+ if(pProperties[nProp].Value >>= nTmp)
pEntry->GetRubyAttr().SetAdjustment((css::text::RubyAdjust)nTmp);
}
else if(pProperties[nProp].Name == UNO_NAME_RUBY_IS_ABOVE)