summaryrefslogtreecommitdiff
path: root/svtools/source/dialogs
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-20 16:07:35 +0200
committerNoel Grandin <noel@peralex.com>2014-03-24 08:12:10 +0200
commitf7074d8de59f58367b31d7266037880403ac27ef (patch)
treebe3892c58184f01b9ac690cac5cc016eabc21f4e /svtools/source/dialogs
parent7a679ee19c3a18d89277c28b12bf81911acfef85 (diff)
svtools: sal_Bool->bool
Change-Id: I2044e6c1f15579b6051fad5d36fcfa8795f88953
Diffstat (limited to 'svtools/source/dialogs')
-rw-r--r--svtools/source/dialogs/insdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/dialogs/insdlg.cxx b/svtools/source/dialogs/insdlg.cxx
index 615c96922d1b..767ab0e57c58 100644
--- a/svtools/source/dialogs/insdlg.cxx
+++ b/svtools/source/dialogs/insdlg.cxx
@@ -283,9 +283,9 @@ OUString SvPasteObjectHelper::GetSotFormatUIName( SotFormatStringId nId )
return aUIName;
}
-sal_Bool SvPasteObjectHelper::GetEmbeddedName(const TransferableDataHelper& rData, OUString& _rName, OUString& _rSource, SotFormatStringId& _nFormat)
+bool SvPasteObjectHelper::GetEmbeddedName(const TransferableDataHelper& rData, OUString& _rName, OUString& _rSource, SotFormatStringId& _nFormat)
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
if( _nFormat == SOT_FORMATSTR_ID_EMBED_SOURCE_OLE || _nFormat == SOT_FORMATSTR_ID_EMBEDDED_OBJ_OLE )
{
datatransfer::DataFlavor aFlavor;
@@ -335,7 +335,7 @@ sal_Bool SvPasteObjectHelper::GetEmbeddedName(const TransferableDataHelper& rDat
else
_rSource = SVT_RESSTR(STR_UNKNOWN_SOURCE);
}
- bRet = sal_True;
+ bRet = true;
}
return bRet;
}