diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 15:36:47 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 15:36:47 +0200 |
commit | 19620f12a2a6df132515c5025a402587a9b8337c (patch) | |
tree | d07f532b836c0236a16a5350dc3e198e307af96a /sc/source/ui/vba/vbacondition.hxx | |
parent | b730eedf0f9f9331a84cf5a63bcd47c2ca63193c (diff) |
sc: sal_Bool -> bool
Change-Id: I3b59c5679ac3d370f62960b9fc26eab4c3fc4873
Diffstat (limited to 'sc/source/ui/vba/vbacondition.hxx')
-rw-r--r-- | sc/source/ui/vba/vbacondition.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbacondition.hxx b/sc/source/ui/vba/vbacondition.hxx index 85d52129a08a..c6e0b33d84c2 100644 --- a/sc/source/ui/vba/vbacondition.hxx +++ b/sc/source/ui/vba/vbacondition.hxx @@ -39,7 +39,7 @@ public: virtual OUString SAL_CALL Formula2( ) throw ( css::script::BasicErrorException, css::uno::RuntimeException ); virtual void setFormula1( const css::uno::Any& _aFormula1) throw ( css::script::BasicErrorException ); virtual void setFormula2( const css::uno::Any& _aFormula2) throw ( css::script::BasicErrorException ); - virtual sal_Int32 Operator(sal_Bool _bIncludeFormulaValue) throw ( css::script::BasicErrorException ); + virtual sal_Int32 Operator(bool _bIncludeFormulaValue) throw ( css::script::BasicErrorException ); virtual sal_Int32 SAL_CALL Operator() throw ( css::script::BasicErrorException, css::uno::RuntimeException ) = 0; }; |