From a3c4a689bc66e4084ce7288a81c2c75428af7365 2012-04-10 07:47:40 From: florianlink Date: 2012-04-10 07:47:40 Subject: [PATCH] fixed to compile with changed API git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@210 ea8d5007-eb21-0410-b261-ccb3ea6e24a9 --- diff --git a/tests/PythonQtTests.cpp b/tests/PythonQtTests.cpp index 29a5eac..114f2bd 100644 --- a/tests/PythonQtTests.cpp +++ b/tests/PythonQtTests.cpp @@ -54,7 +54,7 @@ void PythonQtTestSlotCalling::init() { } -void* polymorphic_ClassB_Handler(const void* ptr, char** className) { +void* polymorphic_ClassB_Handler(const void* ptr, const char** className) { ClassB* o = (ClassB*)ptr; if (o->type()==2) { *className = "ClassB";