From: Manolo Carrasco Date: Mon, 25 Oct 2010 11:18:17 +0000 (+0000) Subject: fixes issue49 X-Git-Tag: release-1.3.2~610 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=faec4f6c4e3e6411bdf4262c1aa34e888dcfe560;p=gwtquery.git fixes issue49 --- diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java index 2d561371..a06ad1f6 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java @@ -58,7 +58,7 @@ public class GQuery implements Lazy { public int left; public int top; - Offset(int left, int top) { + public Offset(int left, int top) { this.left = left; this.top = top; }