diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-07-04 04:16:54 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-07-04 15:59:57 +0200 |
commit | a1e8998571e35427a085c3e3813789ce4fef852a (patch) | |
tree | b71ddc1093227fa2cb36cfadc24152a98bb596d3 /sd/qa | |
parent | a255602967bbfc353a22aadbe370879c1733bcb8 (diff) |
fix wrong operator<< for Color
Change-Id: Iccaf173fc15466f8d0604e3d0e4cd2c790902db4
Diffstat (limited to 'sd/qa')
-rw-r--r-- | sd/qa/unit/import-tests.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx index 1b10e2930df5..1e6d18951750 100644 --- a/sd/qa/unit/import-tests.cxx +++ b/sd/qa/unit/import-tests.cxx @@ -548,7 +548,7 @@ void SdFiltersTest::testFdo72998() // FIXME copypasta std::ostream& operator<<(std::ostream& rStrm, const Color& rColor) { - rStrm << "Color: R:" << rColor.GetRed() << " G:" << rColor.GetGreen() << " B: << rColor.GetBlue()"; + rStrm << "Color: R:" << rColor.GetRed() << " G:" << rColor.GetGreen() << " B: " << rColor.GetBlue(); return rStrm; } |