From faec4f6c4e3e6411bdf4262c1aa34e888dcfe560 Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Mon, 25 Oct 2010 11:18:17 +0000 Subject: [PATCH] fixes issue49 --- .../src/main/java/com/google/gwt/query/client/GQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5