summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-18 15:44:50 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-18 17:02:26 +0200
commit69183fd1a26d7f5e2b04fcc492ee02a5dae71550 (patch)
treea90da7b1020fc0ca0a9f27be4fac63eefaf32d73 /sc
parentce239f392cd22a9f5ca7146272fc020395f865f5 (diff)
WaE: implicit conversion (IntegralCast) from bool to 'unsigned long'
Change-Id: Icff8f89f64f335d8601ced11c83d4d30c2abac18
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/inc/bcaslot.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/inc/bcaslot.hxx b/sc/source/core/inc/bcaslot.hxx
index 27c87f8157da..63e5a6b8802a 100644
--- a/sc/source/core/inc/bcaslot.hxx
+++ b/sc/source/core/inc/bcaslot.hxx
@@ -101,7 +101,7 @@ struct ScBroadcastAreaHash
{
size_t operator()( const ScBroadcastAreaEntry& rEntry ) const
{
- return rEntry.mpArea->GetRange().hashArea() + rEntry.mpArea->IsGroupListening();
+ return rEntry.mpArea->GetRange().hashArea() + static_cast<size_t>(rEntry.mpArea->IsGroupListening());
}
};