summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-01-03 14:33:14 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-01-03 14:33:14 +0300
commitd79e8a0ecf46e860c4ae9bae0bd9ea53e6cad382 (patch)
treea1b97019f40589c101520f288042ef97344a6001 /include
parent0e45166366f9f8a438dc01bb1bb95d21cc50a94d (diff)
CTimer::CTimer() : parameter type is changed to UINT_PTR, as presumed
Diffstat (limited to 'include')
-rw-r--r--include/m_gui.h4
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;
};