summaryrefslogtreecommitdiff
path: root/fpicker/source/aqua/FilterHelper.mm
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/aqua/FilterHelper.mm')
-rw-r--r--fpicker/source/aqua/FilterHelper.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fpicker/source/aqua/FilterHelper.mm b/fpicker/source/aqua/FilterHelper.mm
index ef048f28fe47..99c1e93cf584 100644
--- a/fpicker/source/aqua/FilterHelper.mm
+++ b/fpicker/source/aqua/FilterHelper.mm
@@ -135,16 +135,16 @@ public:
bool operator () ( const FilterEntry& _rEntry )
{
- sal_Bool bMatch;
+ bool bMatch;
if( !_rEntry.hasSubFilters() ) {
//first try the complete filter name
rtl::OUString title = _rEntry.getTitle();
- bMatch = ( title.equals(rTitle) );
+ bMatch = title.equals(rTitle);
if (!bMatch) {
//we didn't find a match using the full name, let's give it another
//try using the shrunk version
rtl::OUString aShrunkName = shrinkFilterName( _rEntry.getTitle() ).trim();
- bMatch = ( aShrunkName.equals(rTitle) );
+ bMatch = aShrunkName.equals(rTitle);
}
}
else
@@ -156,7 +156,7 @@ public:
*this
);
- return bMatch ? true : false;
+ return bMatch;
}
bool operator () ( const UnoFilterEntry& _rEntry )