diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-18 11:23:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:39 +0200 |
commit | c3e3f466571e4993c1b5e42c6d15e37c48f3a069 (patch) | |
tree | 538fb90ed2c05e725f28ff16d41fd27ca38a7573 /include/sfx2/sfxhtml.hxx | |
parent | e399c0759812affd4f7f6e1e3aacfbcafc06ad6d (diff) |
sfx2: sal_Bool->bool
Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b
Diffstat (limited to 'include/sfx2/sfxhtml.hxx')
-rw-r--r-- | include/sfx2/sfxhtml.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sfx2/sfxhtml.hxx b/include/sfx2/sfxhtml.hxx index 132d98b4a70e..1343ac64000d 100644 --- a/include/sfx2/sfxhtml.hxx +++ b/include/sfx2/sfxhtml.hxx @@ -45,7 +45,7 @@ class SFX2_DLLPUBLIC SfxHTMLParser : public HTMLParser protected: - SfxHTMLParser( SvStream& rStream, sal_Bool bNewDoc=sal_True, SfxMedium *pMedium=0 ); + SfxHTMLParser( SvStream& rStream, bool bNewDoc=true, SfxMedium *pMedium=0 ); virtual ~SfxHTMLParser(); @@ -60,7 +60,7 @@ public: const HTMLOptions& rOptions, sal_uInt16 nEventMouseOver = 0, sal_uInt16 nEventMouseOut = 0 ); - inline sal_Bool ParseAreaOptions(ImageMap * pImageMap, const OUString& rBaseURL, + inline bool ParseAreaOptions(ImageMap * pImageMap, const OUString& rBaseURL, sal_uInt16 nEventMouseOver = 0, sal_uInt16 nEventMouseOut = 0); @@ -84,11 +84,11 @@ protected: // End of an asynchronous file download. Returns TRUE if the download // was successful. The read file is then passed into String. - sal_Bool FinishFileDownload( OUString& rStr ); + bool FinishFileDownload( OUString& rStr ); // Returns TRUE if a file was downloaded and if FileDownloadFinished // has not yet been called - sal_Bool ShouldFinishFileDownload() const { return pDLMedium != 0; } + bool ShouldFinishFileDownload() const { return pDLMedium != 0; } SfxMedium *GetMedium() { return pMedium; } const SfxMedium *GetMedium() const { return pMedium; } @@ -98,7 +98,7 @@ protected: const OUString& GetScriptTypeString( SvKeyValueIterator* ) const; }; -inline sal_Bool SfxHTMLParser::ParseAreaOptions(ImageMap * pImageMap, const OUString& rBaseURL, +inline bool SfxHTMLParser::ParseAreaOptions(ImageMap * pImageMap, const OUString& rBaseURL, sal_uInt16 nEventMouseOver, sal_uInt16 nEventMouseOut) { |