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(); |