diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:36:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:36:00 +0100 |
commit | b2d54b09c6148c4bb32d3dcd70523c0e5c42db31 (patch) | |
tree | ff2811f1209dca6c2cc2fa9441bb0b52890555bb /forms/source/component/scrollbar.cxx | |
parent | cc6e40d5a74f5b21cc489bb4233ce4ac88165682 (diff) |
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I5b543edcae47c9ae4c90dba8082127fcb2b9b938
Diffstat (limited to 'forms/source/component/scrollbar.cxx')
-rw-r--r-- | forms/source/component/scrollbar.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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" ); } |