diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-16 22:51:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:19 +0100 |
commit | 05f742d28b3786f44781af5b069c05c16b84decd (patch) | |
tree | dacb340f99ad4e47d20557eee04e6f69f5d15721 /include/comphelper/container.hxx | |
parent | faced6b5f72b096800a232749cce6b38a76d5bac (diff) |
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'include/comphelper/container.hxx')
-rw-r--r-- | include/comphelper/container.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/container.hxx b/include/comphelper/container.hxx index 715424fcbc27..6739f90312b4 100644 --- a/include/comphelper/container.hxx +++ b/include/comphelper/container.hxx @@ -60,14 +60,14 @@ public: virtual void Invalidate() { m_xCurrentObject = NULL; } protected: - virtual sal_Bool ShouldHandleElement(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& /*rElement*/) { return sal_True; } + virtual bool ShouldHandleElement(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& /*rElement*/) { return true; } // This can be used to exclude certain elements; elements for which // this function returns sal_True will be simply skipped. // If this element is returned from Next(), then one can get // here get a little more information on the element. // That's why this method is not const. - virtual sal_Bool ShouldStepInto(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& /*xContainer*/) const { return sal_True; } + virtual bool ShouldStepInto(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& /*xContainer*/) const { return true; } }; //......................................................................... |