Commit ed0ce7ed authored by Stefano Fabri's avatar Stefano Fabri

Fixed missing semicolon

parent 68378ac7
...@@ -723,7 +723,7 @@ GuiReceiver::~GuiReceiver() ...@@ -723,7 +723,7 @@ GuiReceiver::~GuiReceiver()
void GuiReceiver::putText(void* arr, QString text, QPoint org, void* arg2) void GuiReceiver::putText(void* arr, QString text, QPoint org, void* arg2)
{ {
CV_Assert(arr) CV_Assert(arr);
CvMat * mat, stub; CvMat * mat, stub;
int origin=0; int origin=0;
...@@ -2349,7 +2349,7 @@ void ViewPort::updateImage(const CvArr *arr) ...@@ -2349,7 +2349,7 @@ void ViewPort::updateImage(const CvArr *arr)
{ {
//if (!arr) //if (!arr)
//CV_Error(CV_StsNullPtr, "NULL arr pointer (in showImage)" ); //CV_Error(CV_StsNullPtr, "NULL arr pointer (in showImage)" );
CV_Assert(arr) CV_Assert(arr);
CvMat * mat, stub; CvMat * mat, stub;
int origin=0; int origin=0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment