summaryrefslogtreecommitdiff
path: root/vbahelper/source/vbahelper/vbafontbase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper/source/vbahelper/vbafontbase.cxx')
-rw-r--r--vbahelper/source/vbahelper/vbafontbase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbafontbase.cxx b/vbahelper/source/vbahelper/vbafontbase.cxx
index 777ac975c104..685c6652551b 100644
--- a/vbahelper/source/vbahelper/vbafontbase.cxx
+++ b/vbahelper/source/vbahelper/vbafontbase.cxx
@@ -79,7 +79,7 @@ VbaFontBase::getSuperscript()
// not supported in form controls
if( !mbFormControl )
mxFont->getPropertyValue( "CharEscapement" ) >>= nValue;
- return uno::makeAny( ( nValue == SUPERSCRIPT ) );
+ return uno::makeAny( nValue == SUPERSCRIPT );
}
void SAL_CALL
@@ -112,7 +112,7 @@ VbaFontBase::getSubscript()
// not supported in form controls
if( !mbFormControl )
mxFont->getPropertyValue( "CharEscapement" ) >>= nValue;
- return uno::makeAny( ( nValue == SUBSCRIPT ) );
+ return uno::makeAny( nValue == SUBSCRIPT );
}
void SAL_CALL