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

Unified Diff: xfa/fwl/core/fwl_widgetimp.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/core/fwl_widgetimp.cpp
diff --git a/xfa/fwl/core/fwl_widgetimp.cpp b/xfa/fwl/core/fwl_widgetimp.cpp
index 38e3a1ff282d860267bbdf713099cea4f7f3c4f8..113b628bcc7ecc9a7367cad003bfe9cfddc311d5 100644
--- a/xfa/fwl/core/fwl_widgetimp.cpp
+++ b/xfa/fwl/core/fwl_widgetimp.cpp
@@ -103,11 +103,11 @@ void IFWL_Widget::SetEventKey(uint32_t key) {
GetImpl()->SetEventKey(key);
}
-void* IFWL_Widget::GetLayoutItem() const {
+CXFA_FFWidget* IFWL_Widget::GetLayoutItem() const {
return GetImpl()->GetLayoutItem();
}
-void IFWL_Widget::SetLayoutItem(void* pItem) {
+void IFWL_Widget::SetLayoutItem(CXFA_FFWidget* pItem) {
GetImpl()->SetLayoutItem(pItem);
}
@@ -525,11 +525,11 @@ void CFWL_WidgetImp::SetEventKey(uint32_t key) {
m_nEventKey = key;
}
-void* CFWL_WidgetImp::GetLayoutItem() const {
+CXFA_FFWidget* CFWL_WidgetImp::GetLayoutItem() const {
return m_pLayoutItem;
}
-void CFWL_WidgetImp::SetLayoutItem(void* pItem) {
+void CFWL_WidgetImp::SetLayoutItem(CXFA_FFWidget* pItem) {
m_pLayoutItem = pItem;
}

Powered by Google App Engine
This is Rietveld 408576698