LGTM. I'll update this tomorrow. Thanks, John LaBanca [email protected]
On Thu, Jun 18, 2009 at 4:30 PM, Isaac Truett <[email protected]> wrote: > Hi John, > > I know that PagingScrollTable is headed for trunk already, but I thought we > could slip this small patch into the incubator for the mean time. Would you > mind giving it a quick review? > > Thanks, > Isaac > > > Index: src/com/google/gwt/widgetideas/table/client/PagingOptions.java > =================================================================== > --- src/com/google/gwt/widgetideas/table/client/PagingOptions.java (revision > 1681) > +++ src/com/google/gwt/widgetideas/table/client/PagingOptions.java (working > copy) > @@ -173,7 +173,7 @@ > numPagesLabel = new HTML(); > > // Create the loading image > - loadingImage = new Image("scrollTableLoading.gif"); > + loadingImage = new Image(GWT.getModuleBaseURL() + > "scrollTableLoading.gif"); > loadingImage.setVisible(false); > > // Create the error label > Index: src/com/google/gwt/gen2/table/client/PagingOptions.java > =================================================================== > --- src/com/google/gwt/gen2/table/client/PagingOptions.java (revision > 1681) > +++ src/com/google/gwt/gen2/table/client/PagingOptions.java (working copy) > @@ -182,7 +182,7 @@ > numPagesLabel = new HTML(); > > // Create the loading image > - loadingImage = new Image("scrollTableLoading.gif"); > + loadingImage = new Image(GWT.getModuleBaseURL() + > "scrollTableLoading.gif"); > loadingImage.setVisible(false); > > // Create the error label > > --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
