From ed0ce7ed50fd54faf9c4d769a423a52946b95cbc Mon Sep 17 00:00:00 2001 From: Stefano Fabri Date: Mon, 25 Oct 2010 11:29:08 +0000 Subject: [PATCH] Fixed missing semicolon --- modules/highgui/src/window_QT.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/highgui/src/window_QT.cpp b/modules/highgui/src/window_QT.cpp index 464dc58d74..240759033a 100755 --- a/modules/highgui/src/window_QT.cpp +++ b/modules/highgui/src/window_QT.cpp @@ -723,7 +723,7 @@ GuiReceiver::~GuiReceiver() void GuiReceiver::putText(void* arr, QString text, QPoint org, void* arg2) { - CV_Assert(arr) + CV_Assert(arr); CvMat * mat, stub; int origin=0; @@ -2349,7 +2349,7 @@ void ViewPort::updateImage(const CvArr *arr) { //if (!arr) //CV_Error(CV_StsNullPtr, "NULL arr pointer (in showImage)" ); - CV_Assert(arr) + CV_Assert(arr); CvMat * mat, stub; int origin=0;