Kaydet (Commit) d616f1aa authored tarafından Noel Grandin's avatar Noel Grandin

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
üst c880eff6
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment