From 7e9bb77c356e3888e4bf697f4ecd69e642211c75 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 24 Apr 2014 11:37:39 +0200 Subject: slideshow: sal_Bool->bool Change-Id: I0a8886fe164989661add0665c4744fd17a9ef40c --- slideshow/source/inc/hslcolor.hxx | 4 ++-- slideshow/source/inc/rgbcolor.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'slideshow/source/inc') 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 ); -- cgit