diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-25 14:00:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-30 08:44:42 +0200 |
commit | 6aa35db39311dcd7965c9c9c21fcf4143a1f9b43 (patch) | |
tree | 04320eaf8c7481c1b496460624ee20ec11360ac2 /sw/source/ui/vba/vbafont.cxx | |
parent | 1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff) |
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/source/ui/vba/vbafont.cxx')
-rw-r--r-- | sw/source/ui/vba/vbafont.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/vba/vbafont.cxx b/sw/source/ui/vba/vbafont.cxx index fd2922f44ba5..d75b5226c4f8 100644 --- a/sw/source/ui/vba/vbafont.cxx +++ b/sw/source/ui/vba/vbafont.cxx @@ -163,7 +163,7 @@ SwVbaFont::getColorIndex() throw ( uno::RuntimeException, std::exception ) uno::Any SAL_CALL SwVbaFont::getSubscript() throw ( uno::RuntimeException, std::exception ) { - sal_Bool bRes = sal_False; + bool bRes = false; SwVbaFont_BASE::getSubscript() >>= bRes; if ( bRes ) return aLongAnyTrue; @@ -173,7 +173,7 @@ SwVbaFont::getSubscript() throw ( uno::RuntimeException, std::exception ) uno::Any SAL_CALL SwVbaFont::getSuperscript() throw ( uno::RuntimeException, std::exception ) { - sal_Bool bRes = sal_False; + bool bRes = false; SwVbaFont_BASE::getSuperscript() >>= bRes; if ( bRes ) return aLongAnyTrue; @@ -183,7 +183,7 @@ SwVbaFont::getSuperscript() throw ( uno::RuntimeException, std::exception ) uno::Any SAL_CALL SwVbaFont::getBold() throw (uno::RuntimeException, std::exception) { - sal_Bool bRes = sal_False; + bool bRes = false; SwVbaFont_BASE::getBold() >>= bRes; if ( bRes ) return aLongAnyTrue; @@ -193,7 +193,7 @@ SwVbaFont::getBold() throw (uno::RuntimeException, std::exception) uno::Any SAL_CALL SwVbaFont::getItalic() throw (uno::RuntimeException, std::exception) { - sal_Bool bRes = sal_False; + bool bRes = false; SwVbaFont_BASE::getItalic() >>= bRes; if ( bRes ) return aLongAnyTrue; @@ -203,7 +203,7 @@ SwVbaFont::getItalic() throw (uno::RuntimeException, std::exception) uno::Any SAL_CALL SwVbaFont::getStrikethrough() throw (css::uno::RuntimeException, std::exception) { - sal_Bool bRes = sal_False; + bool bRes = false; SwVbaFont_BASE::getStrikethrough() >>= bRes; if ( bRes ) return aLongAnyTrue; @@ -213,7 +213,7 @@ SwVbaFont::getStrikethrough() throw (css::uno::RuntimeException, std::exception) uno::Any SAL_CALL SwVbaFont::getShadow() throw (uno::RuntimeException, std::exception) { - sal_Bool bRes = sal_False; + bool bRes = false; SwVbaFont_BASE::getShadow() >>= bRes; if ( bRes ) return aLongAnyTrue; |