diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-26 13:52:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-04 08:48:56 +0200 |
commit | 50977e5ad36a56a2a0fd471ef654a22bc9f747da (patch) | |
tree | 7397829d1ddf093959e94f3da1885f93ade6c5d8 /sc/source/ui/miscdlgs | |
parent | e699c7fcd150315e4fc3abf21c9d2e732ad9aae1 (diff) |
convert sc/source/ui/inc/sc*.hxx from String to OUString
Change-Id: I7994cf3916bc34876ae838dd7158c03dd732074e
Diffstat (limited to 'sc/source/ui/miscdlgs')
-rw-r--r-- | sc/source/ui/miscdlgs/scuiautofmt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/miscdlgs/scuiautofmt.cxx b/sc/source/ui/miscdlgs/scuiautofmt.cxx index 4ddc2f6d3818..803852676cac 100644 --- a/sc/source/ui/miscdlgs/scuiautofmt.cxx +++ b/sc/source/ui/miscdlgs/scuiautofmt.cxx @@ -308,10 +308,10 @@ IMPL_LINK_NOARG(ScAutoFormatDlg, RemoveHdl) { if ( (nIndex > 0) && (aLbFormat.GetEntryCount() > 0) ) { - String aMsg( aStrDelMsg.GetToken( 0, '#' ) ); + String aMsg( aStrDelMsg.getToken( 0, '#' ) ); aMsg += aLbFormat.GetSelectEntry(); - aMsg += aStrDelMsg.GetToken( 1, '#' ); + aMsg += aStrDelMsg.getToken( 1, '#' ); if ( RET_YES == QueryBox( this, WinBits( WB_YES_NO | WB_DEF_YES ), aMsg ).Execute() ) |