From 47620085b55a9b32332bcdf5bbd80af80045485f Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Sat, 19 Jun 2010 16:26:22 +0000 Subject: [PATCH] added dummy cvInitSystem() to Qt bindings to avoid "unresolved symbol" errors --- modules/highgui/src/window_QT.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/highgui/src/window_QT.cpp b/modules/highgui/src/window_QT.cpp index 7d83e274d6..89ae871ad5 100755 --- a/modules/highgui/src/window_QT.cpp +++ b/modules/highgui/src/window_QT.cpp @@ -110,6 +110,11 @@ CV_IMPL void cvInformation(const char* name, const char* text, int delayms) } +CV_IMPL int cvInitSystem( int, char** ) +{ + return 0; +} + CV_IMPL int cvWaitKey( int arg ) { int result = -1;