insertImages( fourierImages_, images );
// Report any error
- ThrowPPException(image_->quiet());
+ ThrowPPException(image_.quiet());
}
template <class Container >
void forwardFourierTransformImage( Container *fourierImages_,
insertImages( fourierImages_, images );
// Report any error
- ThrowPPException(image_->quiet());
+ ThrowPPException(image_.quiet());
}
// Applies a mathematical expression to a sequence of images.
::pthread_mutexattr_destroy(&attr);
return;
}
- throwExceptionExplicit(OptionError,"mutex initialization failed",
+ throwExceptionExplicit(MagickCore::OptionError,"mutex initialization failed",
strerror(sysError));
}
#else
if ((sysError=::pthread_mutex_destroy(&_mutex)) == 0)
return;
- throwExceptionExplicit(OptionError,"mutex destruction failed",
+ throwExceptionExplicit(MagickCore::OptionError,"mutex destruction failed",
strerror(sysError));
#endif
#if defined(_MT) && defined(_VISUALC_)
if ((sysError=::pthread_mutex_lock(&_mutex)) == 0)
return;
- throwExceptionExplicit(OptionError,"mutex lock failed",
+ throwExceptionExplicit(MagickCore::OptionError,"mutex lock failed",
strerror(sysError));
#endif
#if defined(_MT) && defined(_VISUALC_)
if ((sysError=::pthread_mutex_unlock(&_mutex)) == 0)
return;
- throwExceptionExplicit(OptionError,"mutex unlock failed",
+ throwExceptionExplicit(MagickCore::OptionError,"mutex unlock failed",
strerror(sysError));
#endif
#if defined(_MT) && defined(_VISUALC_)