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

Unified Diff: xfa/fwl/core/ifwl_comboedit.cpp

Issue 2491103002: IFWL method and param cleanup (Closed)
Patch Set: Review feedback Created 4 years, 1 month 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
« no previous file with comments | « xfa/fwl/core/ifwl_combobox.cpp ('k') | xfa/fwl/core/ifwl_datetimepicker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/ifwl_comboedit.cpp
diff --git a/xfa/fwl/core/ifwl_comboedit.cpp b/xfa/fwl/core/ifwl_comboedit.cpp
index a8b04fda890bda54681a70e8da4558c6c43b26be..2a7ac904e155e98dc12b55c94cca2df67f5e83f0 100644
--- a/xfa/fwl/core/ifwl_comboedit.cpp
+++ b/xfa/fwl/core/ifwl_comboedit.cpp
@@ -19,7 +19,7 @@ IFWL_ComboEdit::IFWL_ComboEdit(
void IFWL_ComboEdit::ClearSelected() {
ClearSelections();
- Repaint(&m_rtClient);
+ Repaint(&GetRTClient());
}
void IFWL_ComboEdit::SetSelected() {
@@ -29,7 +29,7 @@ void IFWL_ComboEdit::SetSelected() {
}
void IFWL_ComboEdit::EndCaret() {
- m_pEdtEngine->MoveCaretPos(MC_End);
+ GetTxtEdtEngine()->MoveCaretPos(MC_End);
}
void IFWL_ComboEdit::FlagFocus(bool bSet) {
« no previous file with comments | « xfa/fwl/core/ifwl_combobox.cpp ('k') | xfa/fwl/core/ifwl_datetimepicker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698