From e03b8c42a05847417ed9411d338fe792d3f7d2ee Mon Sep 17 00:00:00 2001 From: dirk Date: Mon, 1 Feb 2016 23:23:43 +0100 Subject: [PATCH] Build fix. --- Magick++/demo/demo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Magick++/demo/demo.cpp b/Magick++/demo/demo.cpp index 65ab01a19..8a127f8f6 100644 --- a/Magick++/demo/demo.cpp +++ b/Magick++/demo/demo.cpp @@ -306,25 +306,25 @@ int main( int /*argc*/, char ** argv) cout << " ordered dither 2x2 ..." << endl; example = model; example.label( "Ordered Dither\n(2x2)" ); - example.randomThreshold( Geometry(2,2) ); + example.randomThreshold(2,2); images.push_back( example ); cout << " ordered dither 3x3..." << endl; example = model; example.label( "Ordered Dither\n(3x3)" ); - example.randomThreshold( Geometry(3,3) ); + example.randomThreshold(3,3); images.push_back( example ); cout << " ordered dither 4x4..." << endl; example = model; example.label( "Ordered Dither\n(4x4)" ); - example.randomThreshold( Geometry(4,4) ); + example.randomThreshold(4,4); images.push_back( example ); cout << " ordered dither red 4x4..." << endl; example = model; example.label( "Ordered Dither\n(Red 4x4)" ); - example.randomThresholdChannel( RedChannel, Geometry(4,4)); + example.randomThresholdChannel(RedChannel,4,4); images.push_back( example ); cout << " plasma ..." << endl; -- 2.50.0