diff options
| author | Neil <nyamatongwe@gmail.com> | 2020-02-09 10:51:55 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2020-02-09 10:51:55 +1100 |
| commit | a0e8dafb53e39b0726a0f44591a6540386d73cea (patch) | |
| tree | 99914c6c361dbc2049827c8a0732a7bf7c6cb8dc | |
| parent | ab96fb14c0a1ba1b09e2cfcfe68bbf9902bc5d9f (diff) | |
| download | scintilla-mirror-a0e8dafb53e39b0726a0f44591a6540386d73cea.tar.gz | |
Backport: Add a size to timer enumeration to avoid warnings.
Backport of changeset 7978:d8030b757ed7.
| -rw-r--r-- | win32/ScintillaWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 45eb96d06..257342cdd 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -333,7 +333,7 @@ class ScintillaWin : static LRESULT PASCAL CTWndProc( HWND hWnd, UINT iMessage, WPARAM wParam, LPARAM lParam); - enum { invalidTimerID, standardTimerID, idleTimerID, fineTimerStart }; + enum : UINT_PTR { invalidTimerID, standardTimerID, idleTimerID, fineTimerStart }; bool DragThreshold(Point ptStart, Point ptNow) override; void StartDrag() override; |
