diff --git a/pixmappaint.d b/pixmappaint.d index dd58e90..180b133 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -477,13 +477,13 @@ struct Pixmap { } /++ - Creates a $(I deep clone) of the Pixmap + Creates a $(I deep copy) of the Pixmap +/ Pixmap clone() const { - auto c = Pixmap(); - c.width = this.width; - c.data = this.data.dup; - return c; + return Pixmap( + this.data.dup, + this.width, + ); } /++