Merge pull request #3614 from cwreynolds:Unicode-fix-for-addText-2
This commit is contained in:
commit
28dd3aae79
@ -117,7 +117,7 @@ CV_IMPL void cvAddText(const CvArr* img, const char* text, CvPoint org, CvFont*
|
|||||||
"putText",
|
"putText",
|
||||||
autoBlockingConnection(),
|
autoBlockingConnection(),
|
||||||
Q_ARG(void*, (void*) img),
|
Q_ARG(void*, (void*) img),
|
||||||
Q_ARG(QString,QString(text)),
|
Q_ARG(QString,QString::fromUtf8(text)),
|
||||||
Q_ARG(QPoint, QPoint(org.x,org.y)),
|
Q_ARG(QPoint, QPoint(org.x,org.y)),
|
||||||
Q_ARG(void*,(void*) font));
|
Q_ARG(void*,(void*) font));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user