From c98a7eec7f24db4e3e7741a52463fca10156ecaf Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 28 Mar 2014 10:53:57 +0200 Subject: xmloff: sal_Bool->bool Change-Id: I1c97da5b7bbac348150399afbf386613433e5551 --- include/xmloff/i18nmap.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/xmloff/i18nmap.hxx') diff --git a/include/xmloff/i18nmap.hxx b/include/xmloff/i18nmap.hxx index b8091ac5751c..c790aff77060 100644 --- a/include/xmloff/i18nmap.hxx +++ b/include/xmloff/i18nmap.hxx @@ -36,13 +36,13 @@ public: { } - sal_Bool operator==( const SvI18NMapEntry_Key& r ) const + bool operator==( const SvI18NMapEntry_Key& r ) const { return nKind == r.nKind && aName == r.aName; } - sal_Bool operator<( const SvI18NMapEntry_Key& r ) const + bool operator<( const SvI18NMapEntry_Key& r ) const { return nKind < r.nKind || ( nKind == r.nKind && -- cgit