diff options
author | Paulo Alcantara <paulo.alcantara@openbossa.org> | 2011-05-09 14:37:38 -0300 |
---|---|---|
committer | Renato Filho <renato.filho@openbossa.org> | 2011-05-18 11:05:51 -0300 |
commit | a859097f565a5b973954eac86f2455ec31801a94 (patch) | |
tree | 55305b162779fd24e0dcd1ca9bbc1dba6455a38c | |
parent | 3546a3674f78abb1f3455e56456a571c6bcb4bef (diff) | |
download | pyside-a859097f565a5b973954eac86f2455ec31801a94.tar.gz pyside-a859097f565a5b973954eac86f2455ec31801a94.tar.xz pyside-a859097f565a5b973954eac86f2455ec31801a94.zip |
Fix typo
Signed-off-by: Paulo Alcantara <paulo.alcantara@openbossa.org>
-rw-r--r-- | PySide/typesystem_templates.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PySide/typesystem_templates.xml b/PySide/typesystem_templates.xml index d0e521d..8a26281 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 < %SIZE; i++) { PyObject *pv = PySequence_Fast_GET_ITEM(fast.object(), i); |