diff options
| author | George Hazan <ghazan@miranda.im> | 2020-01-03 14:33:14 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2020-01-03 14:33:14 +0300 |
| commit | d79e8a0ecf46e860c4ae9bae0bd9ea53e6cad382 (patch) | |
| tree | a1b97019f40589c101520f288042ef97344a6001 /include | |
| parent | 0e45166366f9f8a438dc01bb1bb95d21cc50a94d (diff) | |
CTimer::CTimer() : parameter type is changed to UINT_PTR, as presumed
Diffstat (limited to 'include')
| -rw-r--r-- | include/m_gui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index e469ffcf83..cf69e00560 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -485,7 +485,7 @@ class MIR_CORE_EXPORT CTimer friend class CDlgBase;
public:
- CTimer(CDlgBase* wnd, int idEvent);
+ CTimer(CDlgBase* wnd, UINT_PTR idEvent);
__forceinline int GetEventId() const { return m_idEvent; }
@@ -497,7 +497,7 @@ public: CCallback<CTimer> OnEvent;
protected:
- int m_idEvent;
+ UINT_PTR m_idEvent;
CDlgBase* m_wnd;
};
|
