diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 15:53:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 09:01:10 +0200 |
commit | 8c16c5bcfbb2844663a5b054cb55ef81a8c01dbb (patch) | |
tree | 9ff3b25cc64b681725a3a53b9f0204ac54338788 /sc | |
parent | 903fa82bbd6c48b47e516a84af2e58014c50e933 (diff) |
sal_Bool->bool
Change-Id: Ie2c2daa5ec370310946af9c9a77cededc6331302
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/filtuno.hxx | 5 | ||||
-rw-r--r-- | sc/source/ui/unoobj/filtuno.cxx | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sc/inc/filtuno.hxx b/sc/inc/filtuno.hxx index 587a23e8d598..e43bc181a119 100644 --- a/sc/inc/filtuno.hxx +++ b/sc/inc/filtuno.hxx @@ -50,9 +50,8 @@ private: OUString aFileName; OUString aFilterName; OUString aFilterOptions; - ::com::sun::star::uno::Reference< - ::com::sun::star::io::XInputStream > xInputStream; - sal_Bool bExport; + css::uno::Reference< css::io::XInputStream > xInputStream; + bool bExport; public: ScFilterOptionsObj(); diff --git a/sc/source/ui/unoobj/filtuno.cxx b/sc/source/ui/unoobj/filtuno.cxx index 053a075ecd5e..3e304268f1ab 100644 --- a/sc/source/ui/unoobj/filtuno.cxx +++ b/sc/source/ui/unoobj/filtuno.cxx @@ -344,7 +344,7 @@ void SAL_CALL ScFilterOptionsObj::setTargetDocument( const uno::Reference<lang:: void SAL_CALL ScFilterOptionsObj::setSourceDocument( const uno::Reference<lang::XComponent>& /* xDoc */ ) throw(lang::IllegalArgumentException, uno::RuntimeException) { - bExport = sal_True; + bExport = true; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |