summaryrefslogtreecommitdiff
path: root/dmagick
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick')
-rw-r--r--dmagick/Image.d2
1 files changed, 2 insertions, 0 deletions
diff --git a/dmagick/Image.d b/dmagick/Image.d
index a6758d1..dcbb7c5 100644
--- a/dmagick/Image.d
+++ b/dmagick/Image.d
@@ -4063,6 +4063,7 @@ class Image
* attribute, label, caption, comment, signature, and in some cases EXIF.
*/
void opDispatch(string property)(string value)
+ if ( property != "popFront" )
{
SetImageProperty(imageRef, toStringz(property), toStringz(value));
@@ -4073,6 +4074,7 @@ class Image
* Returns the value of the image property.
*/
auto opDispatch(string property)()
+ if ( property != "popFront" )
{
return to!(string)(GetImageProperty(imageRef, toStringz(property)));
}