summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2015-01-11 21:37:52 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-28 02:03:45 +0200
commitb16c40efa77b8ad3e1d485222158ea20935aba47 (patch)
treedce8550ddc4eb4f41df7d3262afc959ee39475a3
parent650e9065c9821d28d146cc3b3a68b676d5e878cc (diff)
make sure to print numbers as ints and not as characters
Change-Id: I8409ac35a6368c80d0f9bf6b49619a63ce502a5a
-rw-r--r--sc/source/filter/orcus/interface.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/orcus/interface.cxx b/sc/source/filter/orcus/interface.cxx
index cba4b70a1993..718fa4c5ec5b 100644
--- a/sc/source/filter/orcus/interface.cxx
+++ b/sc/source/filter/orcus/interface.cxx
@@ -586,7 +586,7 @@ namespace {
std::ostream& operator<<(std::ostream& rStrm, const Color& rColor)
{
- rStrm << "Red: " << rColor.GetRed() << ", Green: " << rColor.GetGreen() << ", Blue: " << rColor.GetBlue();
+ rStrm << "Red: " << (int)rColor.GetRed() << ", Green: " << (int)rColor.GetGreen() << ", Blue: " << (int)rColor.GetBlue();
return rStrm;
}