From: dirk Date: Sat, 23 Nov 2013 21:36:50 +0000 (+0000) Subject: Fixed test. X-Git-Tag: 7.0.1-0~3100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac204122f15f0e1a4207b324bde25bcdf6678d97;p=imagemagick Fixed test. --- 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++; }