Kaydet (Commit) b2d54b09 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)

Change-Id: I5b543edcae47c9ae4c90dba8082127fcb2b9b938
üst cc6e40d5
......@@ -1062,7 +1062,7 @@ bool ODatabaseForm::InsertFilePart( INetMIMEMessage& rParent, const OUString& rN
aContentDisp.append('\"');
pChild->SetContentDisposition(aContentDisp.makeStringAndClear());
pChild->SetContentType( aContentType );
pChild->SetContentTransferEncoding(OUString("8bit"));
pChild->SetContentTransferEncoding("8bit");
// Body
......
......@@ -284,8 +284,8 @@ namespace frm
Any OScrollBarModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const
{
return translateExternalDoubleToControlIntValue( _rExternalValue, m_xAggregateSet,
OUString( "ScrollValueMin" ),
OUString( "ScrollValueMax" ) );
"ScrollValueMin",
"ScrollValueMax" );
}
......
......@@ -238,8 +238,8 @@ namespace frm
Any OSpinButtonModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const
{
return translateExternalDoubleToControlIntValue( _rExternalValue, m_xAggregateSet,
OUString( "SpinValueMin" ),
OUString( "SpinValueMax" ) );
"SpinValueMin",
"SpinValueMax" );
}
......
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