summaryrefslogtreecommitdiff
path: root/sw/source/core/graphic/ndgrf.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-11-08 12:16:44 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-11-08 13:11:58 +0900
commit88e457dc60b7a7e5f4048e00c0418bc57537c029 (patch)
treeec2a698dea3a5356f641c45ec5ee32746cd5d207 /sw/source/core/graphic/ndgrf.cxx
parentb668d3aaf5690bd067c0ed283e9492ae576117f9 (diff)
sal_Bool to bool
Change-Id: Idfbc33106b20b06c5247c50d099972305f016a51
Diffstat (limited to 'sw/source/core/graphic/ndgrf.cxx')
-rw-r--r--sw/source/core/graphic/ndgrf.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/graphic/ndgrf.cxx b/sw/source/core/graphic/ndgrf.cxx
index 49077873486d..31c3debd4ec9 100644
--- a/sw/source/core/graphic/ndgrf.cxx
+++ b/sw/source/core/graphic/ndgrf.cxx
@@ -529,9 +529,9 @@ short SwGrfNode::SwapOut()
}
-sal_Bool SwGrfNode::GetFileFilterNms( String* pFileNm, String* pFilterNm ) const
+bool SwGrfNode::GetFileFilterNms( String* pFileNm, String* pFilterNm ) const
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
if( refLink.Is() && refLink->GetLinkManager() )
{
sal_uInt16 nType = refLink->GetObjType();
@@ -548,7 +548,7 @@ sal_Bool SwGrfNode::GetFileFilterNms( String* pFileNm, String* pFilterNm ) const
( *pFileNm += sTopic ) += sfx2::cTokenSeperator;
*pFileNm += sItem;
pFilterNm->AssignAscii( RTL_CONSTASCII_STRINGPARAM( "DDE" ));
- bRet = sal_True;
+ bRet = true;
}
}
}