diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-22 12:06:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-22 12:09:29 +0200 |
commit | d616f1aacb85dd8e3387ebcb0bcfa938a47b0026 (patch) | |
tree | 1fca8e3d03d7886a55c6b77637f99aac19471dfd /svtools | |
parent | c880eff613540fc291cd5f90928c95cbe260979f (diff) |
another attempt to fix windows build
after my OUString changes. Seems like windows really doesn't like
OUString tmp;
bool b;
tmp += b ? "1" : "0";
Change-Id: Ie53b4fa36b5ae462fe922feec76e13588d38f1db
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index cbd291719bf5..bf521467ba74 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -1570,7 +1570,7 @@ OUString SvtFileView::GetConfigString() const sRet += ";"; HeaderBarItemBits nBits = pBar->GetItemBits( mpImp->mnSortColumn ); sal_Bool bUp = ( ( nBits & HIB_UPARROW ) == HIB_UPARROW ); - sRet += OUString( bUp ? "1" : "0" ); + sRet += bUp ? OUString("1") : OUString("0"); sRet += ";"; sal_uInt16 nCount = pBar->GetItemCount(); |