diff options
-rw-r--r-- | include/sfx2/controlwrapper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/controlwrapper.hxx b/include/sfx2/controlwrapper.hxx index 0a429b906638..18696240b1ac 100644 --- a/include/sfx2/controlwrapper.hxx +++ b/include/sfx2/controlwrapper.hxx @@ -560,7 +560,7 @@ template< typename ValueT > void NumericFieldWrapper< ValueT >::SetControlDontKnow( bool bSet ) { if( bSet ) - this->GetControl().SetText( String() ); + this->GetControl().SetText( OUString() ); } template< typename ValueT > @@ -587,7 +587,7 @@ template< typename ValueT > void MetricFieldWrapper< ValueT >::SetControlDontKnow( bool bSet ) { if( bSet ) - this->GetControl().SetText( String() ); + this->GetControl().SetText( OUString() ); } template< typename ValueT > |