Changeset 238:380bad9f6852 for dwt/graphics/Path.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/Path.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Path.d
r200 r238 213 213 * </ul> 214 214 */ 215 public void addString( char[]str, float x, float y, Font font) {215 public void addString(String str, float x, float y, Font font) { 216 216 if (isDisposed()) DWT.error(DWT.ERROR_GRAPHIC_DISPOSED); 217 217 if (font is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); … … 586 586 * @return a string representation of the receiver 587 587 */ 588 public override char[]toString() {588 public override String toString() { 589 589 if (isDisposed()) return "Path {*DISPOSED*}"; 590 590 return Format( "Path {{{}}", handle );
