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

Unified Diff: xfa/fwl/cfwl_datetimeedit.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_datetimeedit.h ('k') | xfa/fwl/cfwl_datetimepicker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/cfwl_datetimeedit.cpp
diff --git a/xfa/fwl/core/cfwl_datetimeedit.cpp b/xfa/fwl/cfwl_datetimeedit.cpp
similarity index 88%
rename from xfa/fwl/core/cfwl_datetimeedit.cpp
rename to xfa/fwl/cfwl_datetimeedit.cpp
index 37d79b6024747c4918fd3068ea23d8d2781285b4..869f08ad33f924e9c25b41ee1a274260e73f25b7 100644
--- a/xfa/fwl/core/cfwl_datetimeedit.cpp
+++ b/xfa/fwl/cfwl_datetimeedit.cpp
@@ -4,15 +4,15 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "xfa/fwl/core/cfwl_datetimeedit.h"
+#include "xfa/fwl/cfwl_datetimeedit.h"
#include <memory>
#include <utility>
#include "third_party/base/ptr_util.h"
-#include "xfa/fwl/core/cfwl_datetimepicker.h"
-#include "xfa/fwl/core/cfwl_msgmouse.h"
-#include "xfa/fwl/core/cfwl_widgetmgr.h"
+#include "xfa/fwl/cfwl_datetimepicker.h"
+#include "xfa/fwl/cfwl_messagemouse.h"
+#include "xfa/fwl/cfwl_widgetmgr.h"
CFWL_DateTimeEdit::CFWL_DateTimeEdit(
const CFWL_App* app,
@@ -41,7 +41,7 @@ void CFWL_DateTimeEdit::DisForm_OnProcessMessage(CFWL_Message* pMessage) {
return;
}
- CFWL_MsgMouse* pMouse = static_cast<CFWL_MsgMouse*>(pMessage);
+ CFWL_MessageMouse* pMouse = static_cast<CFWL_MessageMouse*>(pMessage);
if (pMouse->m_dwCmd == FWL_MouseCommand::LeftButtonDown ||
pMouse->m_dwCmd == FWL_MouseCommand::RightButtonDown) {
if ((m_pProperties->m_dwStates & FWL_WGTSTATE_Focused) == 0)
« no previous file with comments | « xfa/fwl/cfwl_datetimeedit.h ('k') | xfa/fwl/cfwl_datetimepicker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698