From 280667978193c199af148000a358f1e6376d0f7a Mon Sep 17 00:00:00 2001 From: Elliot Godzich Date: Tue, 11 Feb 2014 21:46:14 -0800 Subject: [PATCH] Updated DisplayImage.cpp program to compile CV_WINDOW_AUTOSIZE -> WINDOW_AUTOSIZE --- doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst b/doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst index b1c96c4c8d..f32efd2920 100644 --- a/doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst +++ b/doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst @@ -41,7 +41,7 @@ Let's use a simple program such as DisplayImage.cpp shown below. return -1; } - namedWindow( "Display Image", CV_WINDOW_AUTOSIZE ); + namedWindow( "Display Image", WINDOW_AUTOSIZE ); imshow( "Display Image", image ); waitKey(0);