summaryrefslogtreecommitdiff
path: root/cui/source/tabpages/numfmt.cxx
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2012-11-30 14:10:50 -0200
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-11-30 19:36:21 +0000
commit2cb8883cfd1c6ffe293497f064f90f76d12eff32 (patch)
tree553c151ad30a794abe18e5fbc810af049b6cb601 /cui/source/tabpages/numfmt.cxx
parentaab4574d4b0b055385be8d9b2a752863ba8a1a64 (diff)
fdo#38838 UniString -> OUString in cui
Change-Id: I9b629cad4d9b6d4c086bfff47f1d3e9779b2c24d Reviewed-on: https://gerrit.libreoffice.org/1202 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'cui/source/tabpages/numfmt.cxx')
-rw-r--r--cui/source/tabpages/numfmt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx
index 014f87b877a3..7bd349b8dcde 100644
--- a/cui/source/tabpages/numfmt.cxx
+++ b/cui/source/tabpages/numfmt.cxx
@@ -1014,8 +1014,8 @@ void SvxNumberFormatTabPage::UpdateOptions_Impl( sal_Bool bCheckCatChange /*= sa
aEdLeadZeroes.Enable();
aBtnNegRed.Enable();
aBtnThousand.Enable();
- aEdDecimals .SetText( UniString::CreateFromInt32( nDecimals ) );
- aEdLeadZeroes.SetText( UniString::CreateFromInt32( nZeroes ) );
+ aEdDecimals .SetText( OUString::valueOf( nDecimals ) );
+ aEdLeadZeroes.SetText( OUString::valueOf( nZeroes ) );
aBtnNegRed .Check( bNegRed );
aBtnThousand .Check( bThousand );
break;
@@ -1036,8 +1036,8 @@ void SvxNumberFormatTabPage::UpdateOptions_Impl( sal_Bool bCheckCatChange /*= sa
aEdLeadZeroes .Disable();
aBtnNegRed .Disable();
aBtnThousand .Disable();
- aEdDecimals .SetText( UniString::CreateFromInt32( 0 ) );
- aEdLeadZeroes .SetText( UniString::CreateFromInt32( 0 ) );
+ aEdDecimals .SetText( OUString::valueOf( 0 ) );
+ aEdLeadZeroes .SetText( OUString::valueOf( 0 ) );
aBtnNegRed .Check( sal_False );
aBtnThousand .Check( sal_False );
}