Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/EasyGenView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ void CEasyGenView::OnLButtonDblClk(UINT nFlags, CPoint point)
CView::OnLButtonDblClk(nFlags, point);
}

void CEasyGenView::OnTimer(UINT nIDEvent)
void CEasyGenView::OnTimer(UINT_PTR nIDEvent)
{
CView::OnTimer(nIDEvent);
/*
Expand Down
2 changes: 1 addition & 1 deletion src/EasyGenView.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class CEasyGenView : public CView
afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnTimer(UINT_PTR nIDEvent);
afx_msg void OnRButtonDblClk(UINT nFlags, CPoint point);
afx_msg void OnCameraAlign();
afx_msg void OnCameraLeft();
Expand Down