|
static inline |
|
std::shared_ptr<CvTrackbar> icvFindTrackbarByName(const std::shared_ptr<CvWindow>& window, const std::string& name) |
|
{ |
|
CV_Assert(window); |
|
return icvFindTrackbarByName(window, name); |
|
} |
Looks like there's a dereference missing on window in the return statement, so that the overload taking CvWindow& gets invoked.
opencv/modules/highgui/src/window_w32.cpp
Lines 2340 to 2345 in 2aad039
Looks like there's a dereference missing on
windowin the return statement, so that the overload takingCvWindow&gets invoked.