]> granicus.if.org Git - imagemagick/commitdiff
Case change.
authordirk <dirk@git.imagemagick.org>
Thu, 8 Jan 2015 21:58:00 +0000 (21:58 +0000)
committerdirk <dirk@git.imagemagick.org>
Thu, 8 Jan 2015 21:58:00 +0000 (21:58 +0000)
Magick++/lib/CoderInfo.cpp
Magick++/lib/Magick++/CoderInfo.h

index f3511dd8f844eb6918c5314bef0386e0387ae658..b6a44edf648f5cef3c7375dccc83abbac8c29e4c 100644 (file)
@@ -88,12 +88,12 @@ Magick::CoderInfo& Magick::CoderInfo::operator=(const CoderInfo &coder_)
   return(*this);
 }
 
-bool Magick::CoderInfo::canReadMultiThreaded(void) const
+bool Magick::CoderInfo::canReadMultithreaded(void) const
 {
   return((_threadSupport & DecoderThreadSupport) == DecoderThreadSupport);
 }
 
-bool Magick::CoderInfo::canWriteMultiThreaded(void) const
+bool Magick::CoderInfo::canWriteMultithreaded(void) const
 {
   return((_threadSupport & EncoderThreadSupport) == EncoderThreadSupport);
 }
index ede59c08984fd580378caca66acbff083e143b3c..bba52d5b4432f3883d573ac294b5160189397bb1 100644 (file)
@@ -42,10 +42,10 @@ namespace Magick
     CoderInfo& operator=(const CoderInfo &coder_);
 
     // Format can read multi-threaded
-    bool canReadMultiThreaded(void) const;
+    bool canReadMultithreaded(void) const;
 
     // Format can write multi-threaded
-    bool canWriteMultiThreaded(void) const;
+    bool canWriteMultithreaded(void) const;
 
     // Format description
     std::string description(void) const;