diff options
author | elixir <prashant3.yishu@gmail.com> | 2013-03-07 19:35:49 +0530 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-03-11 15:50:44 +0000 |
commit | 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10 (patch) | |
tree | 106a20fe24e8935e9b4943f17dad49dba67aa013 /cui/source/tabpages | |
parent | c9d7427707ca36f60079833f53efd435202fe231 (diff) |
fdo#38838: Converting String/UniString to OUString
Change-Id: If64db96005fcd8a42e4fa24041867b99183965f9
Reviewed-on: https://gerrit.libreoffice.org/2586
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'cui/source/tabpages')
-rw-r--r-- | cui/source/tabpages/autocdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 6df09af10d58..2f11b4c86164 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -350,7 +350,7 @@ void OfaImpBrwString::Paint( aFont.SetWeight( WEIGHT_BOLD ); sal_Bool bFett = sal_True; - sal_uInt16 nPos = 0; + sal_Int32 nPos = 0; do { String sTxt( pUserData->pString->GetToken( 0, 1, nPos )); @@ -359,14 +359,14 @@ void OfaImpBrwString::Paint( rDev.DrawText( aNewPos, sTxt ); - if( STRING_NOTFOUND != nPos ) + if( -1 != nPos ) aNewPos.X() += rDev.GetTextWidth( sTxt ); if( bFett ) rDev.SetFont( aOldFont ); bFett = !bFett; - } while( STRING_NOTFOUND != nPos ); + } while( -1 != nPos ); } } |