summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-28 15:42:50 +0200
committerNoel Grandin <noel@peralex.com>2014-03-03 08:59:38 +0200
commit82ce4dd60785cf08f7844d20fd8051d6b30c3bf1 (patch)
treeb263b8bdeff6691f21016f38ebc121801de66459 /include/editeng
parentec960fd3dea0c5b28f8dd1b3bd2b6e3afb4bc1cd (diff)
editeng: sal_Bool->bool
Change-Id: Icfda5e8e774b9b5a6c3d99b636e4ce772b93139d
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/unoedprx.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/editeng/unoedprx.hxx b/include/editeng/unoedprx.hxx
index 5fe0f6f8a609..a459c8b31607 100644
--- a/include/editeng/unoedprx.hxx
+++ b/include/editeng/unoedprx.hxx
@@ -147,14 +147,14 @@ public:
SvxAccessibleTextAdapter* GetTextForwarderAdapter(); // covariant return types don't work on MSVC
virtual SvxViewForwarder* GetViewForwarder();
virtual SvxEditViewForwarder* GetEditViewForwarder( bool bCreate = false ) SAL_OVERRIDE;
- SvxAccessibleTextEditViewAdapter* GetEditViewForwarderAdapter( sal_Bool bCreate = sal_False ); // covariant return types don't work on MSVC
+ SvxAccessibleTextEditViewAdapter* GetEditViewForwarderAdapter( bool bCreate = false ); // covariant return types don't work on MSVC
virtual void UpdateData();
virtual SfxBroadcaster& GetBroadcaster() const;
SAL_WNODEPRECATED_DECLARATIONS_PUSH
void SetEditSource( ::std::auto_ptr< SvxEditSource > pAdaptee );
SAL_WNODEPRECATED_DECLARATIONS_POP
- sal_Bool IsValid() const;
+ bool IsValid() const;
private:
// declared, but not defined
@@ -170,7 +170,7 @@ private:
mutable SfxBroadcaster maDummyBroadcaster;
- sal_Bool mbEditSourceValid;
+ bool mbEditSourceValid;
};
#endif