aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaulo Alcantara <paulo.alcantara@openbossa.org>2011-05-09 14:37:38 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:23 -0300
commitb3f5de99994ae93dd548da3d5fbc74c8a9cd3a9a (patch)
tree4dc0ff732d1deef6f9d8e7da7e5fd0277156f0bf
parent8e221bfb9731589a4a4d4712745252e50b0a97c6 (diff)
Fix typo
Signed-off-by: Paulo Alcantara <paulo.alcantara@openbossa.org>
-rw-r--r--PySide/typesystem_templates.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/PySide/typesystem_templates.xml b/PySide/typesystem_templates.xml
index d0e521d6b..8a2628148 100644
--- a/PySide/typesystem_templates.xml
+++ b/PySide/typesystem_templates.xml
@@ -293,7 +293,7 @@
<!-- Matrix Aux functions -->
<template name="matrix_constructor">
if (PySequence_Size(%PYARG_1) == %SIZE) {
- Shiboken::AutoDecRef fast(PySequence_Fast(%PYARG_1, "Fail to parse sequnce on %TYPE constructor."));
+ Shiboken::AutoDecRef fast(PySequence_Fast(%PYARG_1, "Failed to parse sequence on %TYPE constructor."));
qreal values[%SIZE];
for(int i=0; i &lt; %SIZE; i++) {
PyObject *pv = PySequence_Fast_GET_ITEM(fast.object(), i);