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

Unified Diff: xfa/fwl/cfwl_comboedit.cpp

Issue 2559173002: Move xfa/fwl/core to xfa/fwl. (Closed)
Patch Set: Created 4 years 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/cfwl_comboedit.h ('k') | xfa/fwl/cfwl_combolist.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/cfwl_comboedit.cpp
diff --git a/xfa/fwl/core/cfwl_comboedit.cpp b/xfa/fwl/cfwl_comboedit.cpp
similarity index 90%
rename from xfa/fwl/core/cfwl_comboedit.cpp
rename to xfa/fwl/cfwl_comboedit.cpp
index 8ee9da6f14072b12ecb241e951bc7207f4337cfd..5981fd79b4d3a8f1c501a2a21ccf7eef375c6fa4 100644
--- a/xfa/fwl/core/cfwl_comboedit.cpp
+++ b/xfa/fwl/cfwl_comboedit.cpp
@@ -4,14 +4,14 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "xfa/fwl/core/cfwl_comboedit.h"
+#include "xfa/fwl/cfwl_comboedit.h"
#include <memory>
#include <utility>
#include "xfa/fde/cfde_txtedtengine.h"
-#include "xfa/fwl/core/cfwl_combobox.h"
-#include "xfa/fwl/core/cfwl_msgmouse.h"
+#include "xfa/fwl/cfwl_combobox.h"
+#include "xfa/fwl/cfwl_messagemouse.h"
CFWL_ComboEdit::CFWL_ComboEdit(
const CFWL_App* app,
@@ -59,7 +59,7 @@ void CFWL_ComboEdit::OnProcessMessage(CFWL_Message* pMessage) {
break;
}
case CFWL_Message::Type::Mouse: {
- CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage);
+ CFWL_MessageMouse* pMsg = static_cast<CFWL_MessageMouse*>(pMessage);
if ((pMsg->m_dwCmd == FWL_MouseCommand::LeftButtonDown) &&
((m_pProperties->m_dwStates & FWL_WGTSTATE_Focused) == 0)) {
SetSelected();
« no previous file with comments | « xfa/fwl/cfwl_comboedit.h ('k') | xfa/fwl/cfwl_combolist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698