comparison dwt/graphics/Pattern.d @ 60:62202ce0039f

Updated and fixed many modules to 3.514
author Jacob Carlborg <doob@me.com>
date Mon, 22 Dec 2008 15:10:19 +0100
parents cfa563df4fdd
children e91dcbf77cc7
comparison
equal deleted inserted replaced
59:83b0ad9d9238 60:62202ce0039f
231 * 231 *
232 * @return a string representation of the receiver 232 * @return a string representation of the receiver
233 */ 233 */
234 public String toString() { 234 public String toString() {
235 if (isDisposed()) return "Pattern {*DISPOSED*}"; 235 if (isDisposed()) return "Pattern {*DISPOSED*}";
236 return Format("Pattern {{}{}" , (color !is null ? color.id_ : gradient.id_) , "}"); 236 return Format("Pattern {{}{}" , (color !is null ? color.id : gradient.id) , "}");
237 } 237 }
238 238
239 } 239 }