diff options
Diffstat (limited to 'forms/source/component')
-rw-r--r-- | forms/source/component/DatabaseForm.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/scrollbar.cxx | 4 | ||||
-rw-r--r-- | forms/source/component/spinbutton.cxx | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index 31005fc39bac..c169d0ea7deb 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -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 diff --git a/forms/source/component/scrollbar.cxx b/forms/source/component/scrollbar.cxx index d42be03570a2..3b50a096fbf3 100644 --- a/forms/source/component/scrollbar.cxx +++ b/forms/source/component/scrollbar.cxx @@ -284,8 +284,8 @@ namespace frm Any OScrollBarModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const { return translateExternalDoubleToControlIntValue( _rExternalValue, m_xAggregateSet, - OUString( "ScrollValueMin" ), - OUString( "ScrollValueMax" ) ); + "ScrollValueMin", + "ScrollValueMax" ); } diff --git a/forms/source/component/spinbutton.cxx b/forms/source/component/spinbutton.cxx index 577a8bfd72ab..6c71bf98e2bf 100644 --- a/forms/source/component/spinbutton.cxx +++ b/forms/source/component/spinbutton.cxx @@ -238,8 +238,8 @@ namespace frm Any OSpinButtonModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const { return translateExternalDoubleToControlIntValue( _rExternalValue, m_xAggregateSet, - OUString( "SpinValueMin" ), - OUString( "SpinValueMax" ) ); + "SpinValueMin", + "SpinValueMax" ); } |