diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-16 11:39:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-16 11:51:51 +0200 |
commit | 5b1b1e55ce492ceb1a907833f7073b46451760c6 (patch) | |
tree | 6f1ff57b2cb011702eb79c41d180063ab16d9463 /cui/source/inc/cuihyperdlg.hxx | |
parent | 199d333f131474729a105afa5a3da61205f61df2 (diff) |
cui: sal_Bool->bool
Change-Id: Ib7dd1f27d4909d30ee794936364a472a9755c609
Diffstat (limited to 'cui/source/inc/cuihyperdlg.hxx')
-rw-r--r-- | cui/source/inc/cuihyperdlg.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cui/source/inc/cuihyperdlg.hxx b/cui/source/inc/cuihyperdlg.hxx index 0f0a512d28c6..d6ca568ea174 100644 --- a/cui/source/inc/cuihyperdlg.hxx +++ b/cui/source/inc/cuihyperdlg.hxx @@ -64,9 +64,9 @@ private: SfxBindings* mpBindings; SfxItemSet* mpItemSet; - sal_Bool mbGrabFocus : 1; - sal_Bool mbReadOnly : 1; - sal_Bool mbIsHTMLDoc : 1; + bool mbGrabFocus : 1; + bool mbReadOnly : 1; + bool mbIsHTMLDoc : 1; DECL_LINK (ClickApplyHdl_Impl, void * ); DECL_LINK (ClickCloseHdl_Impl, void * ); @@ -82,8 +82,8 @@ public: virtual void PageCreated( sal_uInt16 nId, IconChoicePage& rPage ) SAL_OVERRIDE; sal_uInt16 SetPage( SvxHyperlinkItem* pItem ); - void SetReadOnlyMode( sal_Bool bReadOnly = sal_False ); - inline sal_Bool IsHTMLDoc() const { return mbIsHTMLDoc; } + void SetReadOnlyMode( bool bReadOnly = false ); + inline bool IsHTMLDoc() const { return mbIsHTMLDoc; } inline SfxBindings* GetBindings() const { return mpBindings; }; inline SfxDispatcher* GetDispatcher() const { return mpBindings->GetDispatcher(); } |