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

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

Issue 2503513002: Cleanup fwl_* classes and cfx_* classes in fwl. (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_app.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/ifwl_form.cpp
diff --git a/xfa/fwl/core/ifwl_form.cpp b/xfa/fwl/core/ifwl_form.cpp
index 4a8d911976eefe46c54ee4df48279e5983d073a7..c9f0deeaf589790a405054d040c3083a8d7d1366 100644
--- a/xfa/fwl/core/ifwl_form.cpp
+++ b/xfa/fwl/core/ifwl_form.cpp
@@ -329,7 +329,9 @@ IFWL_Widget* IFWL_Form::DoModal() {
if (!pDriver)
return nullptr;
- m_pNoteLoop.reset(new CFWL_NoteLoop(this));
+ m_pNoteLoop.reset(new CFWL_NoteLoop);
Tom Sepez 2016/11/14 17:35:22 nit: pdfium::MakeUnique?
dsinclair 2016/11/14 21:03:00 Done.
+ m_pNoteLoop->SetMainForm(this);
+
pDriver->PushNoteLoop(m_pNoteLoop.get());
m_bDoModalFlag = true;
SetStates(FWL_WGTSTATE_Invisible, false);
« no previous file with comments | « xfa/fwl/core/ifwl_app.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698