diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 15:41:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 15:41:18 +0200 |
commit | 40036fc228af31d84bc1d3a64af84ce03117fb37 (patch) | |
tree | 7c95e3adffb94680eb2ecf6197d4098ea94dea01 /include/vbahelper | |
parent | 19620f12a2a6df132515c5025a402587a9b8337c (diff) |
scripting: sal_Bool -> bool
Change-Id: I3b2d410dfdd9bc779e7f1f1674fb6fc8b74a42c2
Diffstat (limited to 'include/vbahelper')
-rw-r--r-- | include/vbahelper/vbareturntypes.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vbahelper/vbareturntypes.hxx b/include/vbahelper/vbareturntypes.hxx index 826909e141f2..ac8508ca7f87 100644 --- a/include/vbahelper/vbareturntypes.hxx +++ b/include/vbahelper/vbareturntypes.hxx @@ -55,7 +55,7 @@ namespace ooo class ReturnBoolean : public ReturnBoolean_BASE { public: - ReturnBoolean( sal_Bool nValue ) : ReturnBoolean_BASE( nValue ){} + ReturnBoolean( bool nValue ) : ReturnBoolean_BASE( nValue ){} }; typedef DefaultReturnHelper< float, ov::msforms::XReturnSingle > ReturnSingle_BASE; class ReturnSingle : public ReturnSingle_BASE |