diff options
Diffstat (limited to 'include/m_gui.h')
-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;
};
|