diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-24 11:37:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-30 08:43:41 +0200 |
commit | 7e9bb77c356e3888e4bf697f4ecd69e642211c75 (patch) | |
tree | 033158ea248762e6eab7aa9b79a70064f41766bb /slideshow/source/inc | |
parent | 177d32b6b8f3dcc9c82330f710452020798b8342 (diff) |
slideshow: sal_Bool->bool
Change-Id: I0a8886fe164989661add0665c4744fd17a9ef40c
Diffstat (limited to 'slideshow/source/inc')
-rw-r--r-- | slideshow/source/inc/hslcolor.hxx | 4 | ||||
-rw-r--r-- | slideshow/source/inc/rgbcolor.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/inc/hslcolor.hxx b/slideshow/source/inc/hslcolor.hxx index cadd0f1099ef..67fc5c24e7ff 100644 --- a/slideshow/source/inc/hslcolor.hxx +++ b/slideshow/source/inc/hslcolor.hxx @@ -79,8 +79,8 @@ namespace slideshow double mnMagicValue; }; - sal_Bool operator==( const HSLColor& rLHS, const HSLColor& rRHS ); - sal_Bool operator!=( const HSLColor& rLHS, const HSLColor& rRHS ); + bool operator==( const HSLColor& rLHS, const HSLColor& rRHS ); + bool operator!=( const HSLColor& rLHS, const HSLColor& rRHS ); HSLColor operator+( const HSLColor& rLHS, const HSLColor& rRHS ); HSLColor operator*( const HSLColor& rLHS, const HSLColor& rRHS ); HSLColor operator*( double nFactor, const HSLColor& rRHS ); diff --git a/slideshow/source/inc/rgbcolor.hxx b/slideshow/source/inc/rgbcolor.hxx index 28ae792860d7..1868f0ac4785 100644 --- a/slideshow/source/inc/rgbcolor.hxx +++ b/slideshow/source/inc/rgbcolor.hxx @@ -75,8 +75,8 @@ namespace slideshow RGBTriple maRGBTriple; }; - sal_Bool operator==( const RGBColor& rLHS, const RGBColor& rRHS ); - sal_Bool operator!=( const RGBColor& rLHS, const RGBColor& rRHS ); + bool operator==( const RGBColor& rLHS, const RGBColor& rRHS ); + bool operator!=( const RGBColor& rLHS, const RGBColor& rRHS ); RGBColor operator+( const RGBColor& rLHS, const RGBColor& rRHS ); RGBColor operator*( const RGBColor& rLHS, const RGBColor& rRHS ); RGBColor operator*( double nFactor, const RGBColor& rRHS ); |