Kaydet (Commit) 6c778e0a authored tarafından Michael Stahl's avatar Michael Stahl

sw: [loplugin:salbool]

Change-Id: I7d8e2606f0518d489473a9824cb25b6bcd6a9bb2
üst c70f1545
......@@ -1248,8 +1248,9 @@ void SwXDocumentSettings::_getSingleValue( const comphelper::PropertyInfo & rInf
break;
case HANDLE_PROP_LINE_SPACING_SHRINKS_FIRST_LINE:
{
sal_Bool bTmp = mpDoc->getIDocumentSettingAccess().get( IDocumentSettingAccess::PROP_LINE_SPACING_SHRINKS_FIRST_LINE);
rValue.setValue( &bTmp, ::getBooleanCppuType() );
bool const bTmp(mpDoc->getIDocumentSettingAccess().get(
IDocumentSettingAccess::PROP_LINE_SPACING_SHRINKS_FIRST_LINE));
rValue <<= bTmp;
}
break;
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment