diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-07-23 14:40:00 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2012-08-10 14:39:42 +0300 |
commit | 6fa6a21224e71a2e8ab52ee7066d87a8876d23d5 (patch) | |
tree | 75361ef16b57ccc967ad40b0247bebd2f9b9568a /src/com/vaadin/terminal/gwt/client/VDebugConsole.java | |
parent | fc94542099faad5bc4f7bb00bd468f69cacc6a14 (diff) | |
download | vaadin-framework-6fa6a21224e71a2e8ab52ee7066d87a8876d23d5.tar.gz vaadin-framework-6fa6a21224e71a2e8ab52ee7066d87a8876d23d5.zip |
Pass ApplicationConnection, not ApplicationConfiguration, to VUIDLBrowser
Diffstat (limited to 'src/com/vaadin/terminal/gwt/client/VDebugConsole.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/VDebugConsole.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/VDebugConsole.java b/src/com/vaadin/terminal/gwt/client/VDebugConsole.java index a7bd943912..5753e032d4 100644 --- a/src/com/vaadin/terminal/gwt/client/VDebugConsole.java +++ b/src/com/vaadin/terminal/gwt/client/VDebugConsole.java @@ -492,9 +492,9 @@ public class VDebugConsole extends VOverlay implements Console { * .terminal.gwt.client.UIDL) */ @Override - public void dirUIDL(ValueMap u, ApplicationConfiguration conf) { + public void dirUIDL(ValueMap u, ApplicationConnection client) { if (panel.isAttached()) { - VUIDLBrowser vuidlBrowser = new VUIDLBrowser(u, conf); + VUIDLBrowser vuidlBrowser = new VUIDLBrowser(u, client); vuidlBrowser.setText("Response:"); panel.add(vuidlBrowser); } |