From: Jouni Koivuviita Date: Mon, 2 Nov 2009 14:44:55 +0000 (+0000) Subject: Allow inhering Widgets to specify VPopupView popup position (changed showPopup from... X-Git-Tag: 6.7.0.beta1~2346 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=256ba54000a8baffa475193f6f8bf48eae929880;p=vaadin-framework.git Allow inhering Widgets to specify VPopupView popup position (changed showPopup from private to protected). svn changeset:9577/svn branch:6.2 --- diff --git a/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java b/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java index 8e8a640e47..36706bdede 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java @@ -150,7 +150,7 @@ public class VPopupView extends HTML implements Container, Iterable { popup.show(); } - private void showPopup(final CustomPopup popup) { + protected void showPopup(final CustomPopup popup) { int windowTop = RootPanel.get().getAbsoluteTop(); int windowLeft = RootPanel.get().getAbsoluteLeft(); int windowRight = windowLeft + RootPanel.get().getOffsetWidth();