diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-14 12:57:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:26:05 +0200 |
commit | 96ef76c1b75332e4b8379276e396ea623153644d (patch) | |
tree | e87a6a4f7970421f777baedf83315c22579581c8 /include | |
parent | e67d675d1e6410a95c3ea0765c12d96c3a1db512 (diff) |
sfx2: sal_Bool->bool
Change-Id: I733cd63e321bdc775739228c269fa66ff7780780
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/linksrc.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/sfx2/linksrc.hxx b/include/sfx2/linksrc.hxx index d4f004b9df0c..e9d5c9a58701 100644 --- a/include/sfx2/linksrc.hxx +++ b/include/sfx2/linksrc.hxx @@ -61,7 +61,7 @@ public: SvLinkSource(); virtual ~SvLinkSource(); - sal_Bool HasDataLinks( const SvBaseLink* = 0 ) const; + bool HasDataLinks( const SvBaseLink* = 0 ) const; void Closed(); @@ -74,15 +74,15 @@ public: void SendDataChanged(); void NotifyDataChanged(); - virtual sal_Bool Connect( SvBaseLink* ); - virtual sal_Bool GetData( ::com::sun::star::uno::Any & rData /*out param*/, + virtual bool Connect( SvBaseLink* ); + virtual bool GetData( ::com::sun::star::uno::Any & rData /*out param*/, const rtl::OUString & rMimeType, - sal_Bool bSynchron = sal_False ); + bool bSynchron = false ); // sal_True => waitinmg for data - virtual sal_Bool IsPending() const; + virtual bool IsPending() const; // sal_True => data complete loaded - virtual sal_Bool IsDataComplete() const; + virtual bool IsDataComplete() const; // Link impl: DECL_LINK( MyEndEditHdl, sfx2::FileDialogHelper* ); <= param is the dialog virtual void Edit( Window *, SvBaseLink *, const Link& rEndEditHdl ); @@ -97,19 +97,19 @@ public: struct StreamToLoadFrom{ StreamToLoadFrom( - const com::sun::star::uno::Reference<com::sun::star::io::XInputStream>& xInputStream,sal_Bool bIsReadOnly ) + const com::sun::star::uno::Reference<com::sun::star::io::XInputStream>& xInputStream, bool bIsReadOnly ) :m_xInputStreamToLoadFrom(xInputStream), m_bIsReadOnly(bIsReadOnly) { } com::sun::star::uno::Reference<com::sun::star::io::XInputStream> - m_xInputStreamToLoadFrom; - sal_Bool m_bIsReadOnly; + m_xInputStreamToLoadFrom; + bool m_bIsReadOnly; }; StreamToLoadFrom getStreamToLoadFrom(); - void setStreamToLoadFrom(const com::sun::star::uno::Reference<com::sun::star::io::XInputStream>& xInputStream,sal_Bool bIsReadOnly ); + void setStreamToLoadFrom(const com::sun::star::uno::Reference<com::sun::star::io::XInputStream>& xInputStream, bool bIsReadOnly ); void clearStreamToLoadFrom(); }; |