diff org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/graphics/Image.d @ 26:f589fc20a5f9

work on linux phobos
author Frank Benoit <benoit@tionex.de>
date Sat, 21 Mar 2009 11:22:55 +0100
parents f713da8bc051
children ddbfe84d86df
line wrap: on
line diff
--- a/org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/graphics/Image.d	Fri Mar 20 23:03:58 2009 +0100
+++ b/org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/graphics/Image.d	Sat Mar 21 11:22:55 2009 +0100
@@ -31,7 +31,6 @@
 import java.io.InputStream;
 import java.lang.all;
 
-import tango.text.convert.Format;
 import tango.stdc.string;
 
 /**
@@ -784,7 +783,7 @@
  *
  * @see #hashCode
  */
-public override int opEquals (Object object) {
+public override equals_t opEquals (Object object) {
     if (object is this) return true;
     if ( auto image = cast(Image)object ){
         return device is image.device && pixmap is image.pixmap;