Reviewers: jat, scottb, Description: Hi John/Scott,
Please review this simple patch that fixes issue 2979. Regards, Amit Please review this at http://gwt-code-reviews.appspot.com/34807 Affected files: dev/windows/src/org/eclipse/swt/browser/WebSite.java Index: dev/windows/src/org/eclipse/swt/browser/WebSite.java =================================================================== --- dev/windows/src/org/eclipse/swt/browser/WebSite.java (revision 5360) +++ dev/windows/src/org/eclipse/swt/browser/WebSite.java (working copy) @@ -38,8 +38,9 @@ */ public boolean startGears() { // Get the classID of the Gears BHO. + GUID appClsid = null; try { - GUID appClsid = getClassID("gears.BHO"); + appClsid = getClassID("gears.BHO"); if (appClsid == null) { return false; } --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
