Fixed missing semicolon

pull/13383/head
Stefano Fabri 14 years ago
parent 68378ac7e4
commit ed0ce7ed50
  1. 4
      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;

Loading…
Cancel
Save