Skip to content

Commit

Permalink
remove default values in vpDisplayWin32.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFlt committed Feb 5, 2024
1 parent 8f9af8a commit b4c373d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/gui/src/display/windows/vpDisplayWin32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ void vpCreateWindow(threadParam *param)
*/
vpDisplayWin32::vpDisplayWin32(vpWin32Renderer *rend) : iStatus(false), window(rend) { }

vpDisplayWin32::vpDisplayWin32(vpImage<vpRGBa> &I, int winx = -1, int winy = -1, const std::string &title = "")
vpDisplayWin32::vpDisplayWin32(vpImage<vpRGBa> &I, int winx, int winy, const std::string &title)
: iStatus(false), window(nullptr)
{
init(I, winx, winy, title);
}

vpDisplayWin32::vpDisplayWin32(vpImage<unsigned char> &I, int winx = -1, int winy = -1, const std::string &title = "")
vpDisplayWin32::vpDisplayWin32(vpImage<unsigned char> &I, int winx, int winy, const std::string &title)
: iStatus(false), window(nullptr)
{
init(I, winx, winy, title);
Expand Down

0 comments on commit b4c373d

Please sign in to comment.