Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2045)

Unified Diff: xfa/fwl/lightwidget/cfwl_widget.cpp

Issue 2017773002: Test CL. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/fwl/lightwidget/cfwl_widget.cpp
diff --git a/xfa/fwl/lightwidget/cfwl_widget.cpp b/xfa/fwl/lightwidget/cfwl_widget.cpp
index 239796d03ae628a94d4726c1b59142ddf3fad94f..24180f8fb8b81708464c93fdc4962553483a9013 100644
--- a/xfa/fwl/lightwidget/cfwl_widget.cpp
+++ b/xfa/fwl/lightwidget/cfwl_widget.cpp
@@ -132,11 +132,11 @@ void CFWL_Widget::SetStates(uint32_t dwStates, FX_BOOL bSet) {
m_pIface->SetStates(dwStates, bSet);
}
-void* CFWL_Widget::GetLayoutItem() const {
+CXFA_FFWidget* CFWL_Widget::GetLayoutItem() const {
return m_pIface ? m_pIface->GetLayoutItem() : nullptr;
}
-void CFWL_Widget::SetLayoutItem(void* pItem) {
+void CFWL_Widget::SetLayoutItem(CXFA_FFWidget* pItem) {
if (m_pIface)
m_pIface->SetLayoutItem(pItem);
}

Powered by Google App Engine
This is Rietveld 408576698