From ac204122f15f0e1a4207b324bde25bcdf6678d97 Mon Sep 17 00:00:00 2001 From: dirk Date: Sat, 23 Nov 2013 21:36:50 +0000 Subject: [PATCH] Fixed test. --- Magick++/tests/colorHistogram.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Magick++/tests/colorHistogram.cpp b/Magick++/tests/colorHistogram.cpp index 4418eacc9..3085a0931 100644 --- a/Magick++/tests/colorHistogram.cpp +++ b/Magick++/tests/colorHistogram.cpp @@ -71,9 +71,9 @@ int main( int /*argc*/, char ** argv) while (p != histogram.end()) { cout << setw(10) << (int)p->second << ": (" - << setw(quantum_width) << (int)p->first.redQuantum() << "," - << setw(quantum_width) << (int)p->first.greenQuantum() << "," - << setw(quantum_width) << (int)p->first.blueQuantum() << ")" + << setw(quantum_width) << (int)p->first.quantumRed() << "," + << setw(quantum_width) << (int)p->first.quantumGreen() << "," + << setw(quantum_width) << (int)p->first.quantumBlue() << ")" << endl; p++; } -- 2.40.0