diff options
| author | George Hazan <ghazan@miranda.im> | 2020-01-03 15:25:13 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2020-01-03 15:25:13 +0300 |
| commit | 2d2166ed2a83bc8ce315f4e7f29c7ab71439a7e4 (patch) | |
| tree | efb76991e12b8dce23893ee2c5b8cf418cd38a8e /include | |
| parent | f4c7ba6b587dd71da4e44c38fe81e1e4cfdbe10f (diff) | |
CTimer::GetEventId() shall return UINT_PTR as well
Diffstat (limited to 'include')
| -rw-r--r-- | include/m_gui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index cf69e00560..817c08e8c1 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -487,7 +487,7 @@ class MIR_CORE_EXPORT CTimer public:
CTimer(CDlgBase* wnd, UINT_PTR idEvent);
- __forceinline int GetEventId() const { return m_idEvent; }
+ __forceinline UINT_PTR GetEventId() const { return m_idEvent; }
virtual BOOL OnTimer();
|
