summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.co.uk>2011-01-20 23:51:29 +0200
committerGeorge Kiagiadakis <george.kiagiadakis@collabora.co.uk>2011-01-20 23:51:29 +0200
commit064d0d0285a3f5e1c33ab4c5eba9804da6b5e73c (patch)
tree165014a0a6feca8ee1217fbc2b3f735664f97ac9
parent67324ffec8e1e1909b49f75a013bdfb9328566d6 (diff)
Correct assertion message.
Users will most probably hit this assertion only by forgetting to call init().
-rw-r--r--src/QGlib/wrap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/QGlib/wrap.cpp b/src/QGlib/wrap.cpp
index 857e9cb..73a00a3 100644
--- a/src/QGlib/wrap.cpp
+++ b/src/QGlib/wrap.cpp
@@ -37,7 +37,7 @@ RefCountedObject *constructWrapper(Type instanceType, void *instance)
}
Q_ASSERT_X(false, "QGlib::constructWrapper",
- "No wrapper constructor found for this type. This is a bug in the bindings library.");
+ "No wrapper constructor found for this type. Did you forget to call init()?.");
return cppClass;
}