]> granicus.if.org Git - imagemagick/commitdiff
Corrected mistake.
authorDirk Lemstra <dirk@lemstra.org>
Tue, 18 Dec 2018 20:48:02 +0000 (21:48 +0100)
committerDirk Lemstra <dirk@lemstra.org>
Tue, 18 Dec 2018 20:48:02 +0000 (21:48 +0100)
Magick++/lib/Magick++/STL.h

index 8adc6333dcf4855c4b78fabaf08796d91295f001..6032796b818eeeba9e33e904f2c5b964dfefbf49 100644 (file)
@@ -2653,7 +2653,7 @@ namespace Magick
   void pingImages(Container *sequence_,const std::string &imageSpec_,
     ReadOptions &options)
   {
-    options.ping=true;
+    options.ping(true);
     readImages(sequence_,imageSpec_,options);
   }
 
@@ -2667,7 +2667,7 @@ namespace Magick
   template<class Container>
   void pingImages(Container *sequence_,const Blob &blob_,ReadOptions &options)
   {
-    options.ping=true;
+    options.ping(true);
     readImages(sequence_,blob_,options);
   }