From 67c6ca3cd86b6a31c888264bb8067c6c4324e56c Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 7 Dec 2016 18:24:00 -0800 Subject: Split CFWL_Widget::GetWidgetRect into two parts This CL splits the inflation logic out of GetWidgetRect to allow subclasses to call that directly instead of the CFWL_Widget::GetWidgetRect method. Review-Url: https://codereview.chromium.org/2555253002 --- xfa/fwl/core/cfwl_listbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fwl/core/cfwl_listbox.cpp') diff --git a/xfa/fwl/core/cfwl_listbox.cpp b/xfa/fwl/core/cfwl_listbox.cpp index 48f8c262f5..5dd37d15d7 100644 --- a/xfa/fwl/core/cfwl_listbox.cpp +++ b/xfa/fwl/core/cfwl_listbox.cpp @@ -61,7 +61,7 @@ void CFWL_ListBox::GetWidgetRect(CFX_RectF& rect, bool bAutoSize) { CFX_SizeF fs = CalcSize(true); rect.Set(0, 0, fs.x, fs.y); - CFWL_Widget::GetWidgetRect(rect, true); + InflateWidgetRect(rect); } void CFWL_ListBox::Update() { -- cgit v1.2.3