diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 15:42:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:56 +0200 |
commit | 436cd900956b5fd0b6583954c002f8c28ca32698 (patch) | |
tree | 00bf0fb7c6daa0041670ce5209e5912780520a66 /svx/source/dialog/docrecovery.cxx | |
parent | c849d750eb751d3f2b99d23cca1c8c08672ff379 (diff) |
svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
Diffstat (limited to 'svx/source/dialog/docrecovery.cxx')
-rw-r--r-- | svx/source/dialog/docrecovery.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index 4ac7a25ed32c..63b2747a4671 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -1007,7 +1007,7 @@ RecoveryDialog::RecoveryDialog(Window* pParent, // mark first item SvTreeListEntry* pFirst = m_aFileListLB.First(); if (pFirst) - m_aFileListLB.SetCursor(pFirst, sal_True); + m_aFileListLB.SetCursor(pFirst, true); } @@ -1280,7 +1280,7 @@ void RecoveryDialog::stepNext(TURLInfo* pItem) if (pInfo->ID != pItem->ID) continue; - m_aFileListLB.SetCursor(pEntry, sal_True); + m_aFileListLB.SetCursor(pEntry, true); m_aFileListLB.MakeVisible(pEntry); m_aFileListLB.Invalidate(); m_aFileListLB.Update(); |