summaryrefslogtreecommitdiff
path: root/include/sfx2/linkmgr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-14 11:18:53 +0200
committerNoel Grandin <noel@peralex.com>2014-03-18 11:26:05 +0200
commite67d675d1e6410a95c3ea0765c12d96c3a1db512 (patch)
tree538f4802bf0fbb97e49b241e53ea77f437f16ce1 /include/sfx2/linkmgr.hxx
parent4f9ce93ecb965652b79ffa569700e91e47912ba2 (diff)
sfx2: sal_Bool->bool
Change-Id: I01a33e255b0dd2a0045f6eed52e6b31305750599
Diffstat (limited to 'include/sfx2/linkmgr.hxx')
-rw-r--r--include/sfx2/linkmgr.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sfx2/linkmgr.hxx b/include/sfx2/linkmgr.hxx
index f62b07319b31..3865594c49a2 100644
--- a/include/sfx2/linkmgr.hxx
+++ b/include/sfx2/linkmgr.hxx
@@ -61,7 +61,7 @@ class SFX2_DLLPUBLIC LinkManager
SfxObjectShell *pPersist; // LinkMgr must be release before SfxObjectShell
protected:
- sal_Bool InsertLink( SvBaseLink* pLink, sal_uInt16 nObjType, sal_uInt16 nUpdateType,
+ bool InsertLink( SvBaseLink* pLink, sal_uInt16 nObjType, sal_uInt16 nUpdateType,
const OUString* pName = 0 );
public:
@@ -90,16 +90,16 @@ public:
void Remove( SvBaseLink *pLink );
void Remove( size_t nPos, size_t nCnt = 1 );
- sal_Bool Insert( SvBaseLink* pLink );
+ bool Insert( SvBaseLink* pLink );
// the links connect to a SvLinkSource and adds to the list
- sal_Bool InsertDDELink( SvBaseLink*,
+ bool InsertDDELink( SvBaseLink*,
const OUString& rServer,
const OUString& rTopic,
const OUString& rItem );
// if everything is already set at the link!
- sal_Bool InsertDDELink( SvBaseLink* );
+ bool InsertDDELink( SvBaseLink* );
// Connect the links to a pseudo-object and add to the list
bool InsertFileLink( sfx2::SvBaseLink&,
@@ -141,7 +141,7 @@ public:
// Call with list of links to server
const SvLinkSources& GetServers() const { return aServerTbl; }
// Link register/delete
- sal_Bool InsertServer( SvLinkSource* rObj );
+ bool InsertServer( SvLinkSource* rObj );
void RemoveServer( SvLinkSource* rObj );
// A transfer is aborted, so cancel all download media
@@ -157,7 +157,7 @@ public:
// if the mimetype says graphic/bitmap/gdimetafile then get the
// graphic from the Any. Return says no errors
- static sal_Bool GetGraphicFromAny( const OUString& rMimeType,
+ static bool GetGraphicFromAny( const OUString& rMimeType,
const ::com::sun::star::uno::Any & rValue,
Graphic& rGrf );