From 706fbdf1f456dd069600b2d2a97b44404b97671f Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Wed, 25 Nov 2009 15:06:47 -0800 Subject: [PATCH] Fixing getter --- framework/src/com/phonegap/DroidGap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/com/phonegap/DroidGap.java b/framework/src/com/phonegap/DroidGap.java index 943ae358..18e1a9ef 100644 --- a/framework/src/com/phonegap/DroidGap.java +++ b/framework/src/com/phonegap/DroidGap.java @@ -187,7 +187,7 @@ public class DroidGap extends Activity { public WebView getView() { - return this.WebView; + return this.appView; } }