From 13ae3857c399200ed1d3e4ae2c5039c5dc25071e Mon Sep 17 00:00:00 2001 From: dirk Date: Thu, 8 Jan 2015 21:58:00 +0000 Subject: [PATCH] Case change. --- Magick++/lib/CoderInfo.cpp | 4 ++-- Magick++/lib/Magick++/CoderInfo.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Magick++/lib/CoderInfo.cpp b/Magick++/lib/CoderInfo.cpp index f3511dd8f..b6a44edf6 100644 --- a/Magick++/lib/CoderInfo.cpp +++ b/Magick++/lib/CoderInfo.cpp @@ -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); } diff --git a/Magick++/lib/Magick++/CoderInfo.h b/Magick++/lib/Magick++/CoderInfo.h index ede59c089..bba52d5b4 100644 --- a/Magick++/lib/Magick++/CoderInfo.h +++ b/Magick++/lib/Magick++/CoderInfo.h @@ -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; -- 2.40.0