summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-02 13:25:30 +0200
committerNoel Grandin <noel@peralex.com>2014-04-03 09:17:53 +0200
commit64825d26b14e754171426bec634f5aaedf0466e2 (patch)
treeb520383409c5883754eec4c50cbecb5077968c12 /sw
parent0523304875cf810acb1ff7caf9c9a2ec5d982b70 (diff)
svtools/treelistentry.hxx: sal_Bool->bool
Change-Id: I0fb2827c41024216f574266e61a11b1cbb7bce28
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/uibase/utlui/content.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/uibase/utlui/content.cxx b/sw/source/core/uibase/utlui/content.cxx
index 2fa15b568f90..06adfaf02ca6 100644
--- a/sw/source/core/uibase/utlui/content.cxx
+++ b/sw/source/core/uibase/utlui/content.cxx
@@ -1376,7 +1376,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
//else the corresponding entry is set false .
SdrObject * pObj = GetDrawingObjectsByContent(pCnt);
if(pChild)
- pChild->SetMarked(sal_False);
+ pChild->SetMarked(false);
if(pObj)
{
SdrView* pDrawView = pActiveShell->GetDrawView();
@@ -1387,7 +1387,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
if(Marked)
{
//sEntry += String::CreateFromAscii(" *");
- pChild->SetMarked(sal_True);
+ pChild->SetMarked(true);
}
}