diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-07-17 17:14:14 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-07-17 17:14:14 +0000 |
| commit | 00da535a78027a4a8457049a9f04a3dd27cbed25 (patch) | |
| tree | dcefc4a37f911b837c4e3da693857403f63ee96b /src | |
| parent | 873fa37a56a876fb6b7504be5ad1eaa73779a201 (diff) | |
Fix wrong data type in Windows function override (STR #3232).
This patch uses the correct data type (as defined by Windows / msn)
but does not fix the Cygwin linker problem. Unfortunately.
This issue may be a Cygwin problem and should be reported to Cygwin.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10795 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/fl_dnd_win32.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_dnd_win32.cxx b/src/fl_dnd_win32.cxx index 9048f11ba..78ca9ccf7 100644 --- a/src/fl_dnd_win32.cxx +++ b/src/fl_dnd_win32.cxx @@ -334,7 +334,7 @@ public: delete this; return nTemp; } - STDMETHODIMP GiveFeedback( ulong ) { return DRAGDROP_S_USEDEFAULTCURSORS; } + STDMETHODIMP GiveFeedback( DWORD ) { return DRAGDROP_S_USEDEFAULTCURSORS; } STDMETHODIMP QueryContinueDrag( BOOL esc, DWORD keyState ) { if ( esc ) return DRAGDROP_S_CANCEL; |
