sivarajankumar / google-web-toolkit-incubator

Automatically exported from code.google.com/p/google-web-toolkit-incubator
0 stars 0 forks source link

CurrencyWidget is failing to compile due to invalid imports #331

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Found in what component (Widget/FAQ/Library):
  com.google.gwt.widgetideas.client.CurrencyWidget

Detailed description:

I am attempting to build this project from trunk (using GWT trunk as well).
The build fails due to an invalid import (see
20100108-ant-build-gwt-incubator-prepatch.txt).

It seems this Widget just hasn't been updated to use GWT trunk.

Workaround if you have one:
replace imports:
-import com.google.gwt.i18n.client.impl.CurrencyData;
-import com.google.gwt.i18n.client.impl.CurrencyList;
+import com.google.gwt.i18n.client.CurrencyData;
+import com.google.gwt.i18n.client.CurrencyList;

Original issue reported on code.google.com by cjl...@gmail.com on 8 Jan 2010 at 8:47

Attachments:

GoogleCodeExporter commented 8 years ago
I am building using these steps 
GWT: http://code.google.com/webtoolkit/makinggwtbetter.html#compiling
GWT Incubator:
http://code.google.com/p/google-web-toolkit-incubator/wiki/MakingIncubatorBetter

Original comment by cjl...@gmail.com on 8 Jan 2010 at 8:48

GoogleCodeExporter commented 8 years ago
I found the change in GWT that caused this to break:
http://code.google.com/p/google-web-toolkit/source/detail?r=7294

Original comment by cjl...@gmail.com on 8 Jan 2010 at 8:52