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

Unified Diff: xfa/fwl/core/cfwl_spinbutton.h

Issue 2525083002: Rename IFWL classes which do not have CFWL equivalents (Closed)
Patch Set: 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/cfwl_scrollbar.cpp ('k') | xfa/fwl/core/cfwl_spinbutton.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfwl_spinbutton.h
diff --git a/xfa/fwl/core/ifwl_spinbutton.h b/xfa/fwl/core/cfwl_spinbutton.h
similarity index 85%
rename from xfa/fwl/core/ifwl_spinbutton.h
rename to xfa/fwl/core/cfwl_spinbutton.h
index ab888b1b0c4e61e386e1d24ac4de27cb8fc11a06..87cf16727cc5445c1eb156790badd69ab68e367f 100644
--- a/xfa/fwl/core/ifwl_spinbutton.h
+++ b/xfa/fwl/core/cfwl_spinbutton.h
@@ -4,8 +4,8 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef XFA_FWL_CORE_IFWL_SPINBUTTON_H_
-#define XFA_FWL_CORE_IFWL_SPINBUTTON_H_
+#ifndef XFA_FWL_CORE_CFWL_SPINBUTTON_H_
+#define XFA_FWL_CORE_CFWL_SPINBUTTON_H_
#include <memory>
@@ -19,11 +19,11 @@
class CFWL_MsgMouse;
class CFWL_WidgetProperties;
-class IFWL_SpinButton : public IFWL_Widget {
+class CFWL_SpinButton : public IFWL_Widget {
public:
- IFWL_SpinButton(const CFWL_App* app,
+ CFWL_SpinButton(const CFWL_App* app,
std::unique_ptr<CFWL_WidgetProperties> properties);
- ~IFWL_SpinButton() override;
+ ~CFWL_SpinButton() override;
// IFWL_Widget
FWL_Type GetClassID() const override;
@@ -40,12 +40,12 @@ class IFWL_SpinButton : public IFWL_Widget {
private:
class Timer : public CFWL_Timer {
public:
- explicit Timer(IFWL_SpinButton* pToolTip);
+ explicit Timer(CFWL_SpinButton* pToolTip);
~Timer() override {}
void Run(CFWL_TimerInfo* pTimerInfo) override;
};
- friend class IFWL_SpinButton::Timer;
+ friend class CFWL_SpinButton::Timer;
void EnableButton(bool bEnable, bool bUp = true);
bool IsButtonEnabled(bool bUp = true);
@@ -70,7 +70,7 @@ class IFWL_SpinButton : public IFWL_Widget {
int32_t m_iButtonIndex;
bool m_bLButtonDwn;
CFWL_TimerInfo* m_pTimerInfo;
- IFWL_SpinButton::Timer m_Timer;
+ CFWL_SpinButton::Timer m_Timer;
};
-#endif // XFA_FWL_CORE_IFWL_SPINBUTTON_H_
+#endif // XFA_FWL_CORE_CFWL_SPINBUTTON_H_
« no previous file with comments | « xfa/fwl/core/cfwl_scrollbar.cpp ('k') | xfa/fwl/core/cfwl_spinbutton.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698