Commit f60f8a73 authored by Andrey Pavlenko's avatar Andrey Pavlenko Committed by OpenCV Buildbot

Merge pull request #2172 from Nerei:compilation_and_warnings

parents e965f3d3 4e20e06e
...@@ -1363,7 +1363,9 @@ MainWindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) ...@@ -1363,7 +1363,9 @@ MainWindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
break; break;
case WM_MOUSEWHEEL: case WM_MOUSEWHEEL:
#if defined WM_MOUSEHWHEEL
case WM_MOUSEHWHEEL: case WM_MOUSEHWHEEL:
#endif
if( window->on_mouse ) if( window->on_mouse )
{ {
int flags = (wParam & MK_LBUTTON ? CV_EVENT_FLAG_LBUTTON : 0)| int flags = (wParam & MK_LBUTTON ? CV_EVENT_FLAG_LBUTTON : 0)|
......
...@@ -88,7 +88,7 @@ namespace clahe ...@@ -88,7 +88,7 @@ namespace clahe
return true; return true;
} }
static bool transform(const cv::InputArray _src, cv::OutputArray _dst, const cv::InputArray _lut, static bool transform(cv::InputArray _src, cv::OutputArray _dst, cv::InputArray _lut,
const int tilesX, const int tilesY, const cv::Size & tileSize) const int tilesX, const int tilesY, const cv::Size & tileSize)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment