From d62f844b124b75976abf62f12306ecf14befef3f Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Fri, 31 Jul 2009 21:44:02 +0000 Subject: Fixed typoes in error messages. --- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp | 2 +- .../freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp | 2 +- .../python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp | 2 +- .../intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) (limited to 'source/blender/freestyle/intern/python/UnaryFunction0D') diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp index 3d0eadfa9a3..20455f8332c 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp @@ -225,7 +225,7 @@ PyObject * UnaryFunction0DDouble___call__( BPy_UnaryFunction0DDouble *self, PyOb return NULL; if( typeid(*(self->uf0D_double)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_double->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it)) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp index 543d6dc57a7..87891af6a07 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp @@ -168,7 +168,7 @@ PyObject * UnaryFunction0DEdgeNature___call__( BPy_UnaryFunction0DEdgeNature *se return NULL; if( typeid(*(self->uf0D_edgenature)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_edgenature->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp index 949a88a49af..74999d70d28 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp @@ -197,7 +197,7 @@ PyObject * UnaryFunction0DFloat___call__( BPy_UnaryFunction0DFloat *self, PyObje return NULL; if( typeid(*(self->uf0D_float)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_float->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp index 1041f1053de..9f319bd09dd 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp @@ -168,7 +168,7 @@ PyObject * UnaryFunction0DId___call__( BPy_UnaryFunction0DId *self, PyObject *ar return NULL; if( typeid(*(self->uf0D_id)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_id->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp index 64b4d53fe2e..a86580b5d42 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp @@ -168,7 +168,7 @@ PyObject * UnaryFunction0DMaterial___call__( BPy_UnaryFunction0DMaterial *self, return NULL; if( typeid(*(self->uf0D_material)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_material->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp index b0ecbc79cd2..08d10d2be39 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp @@ -168,7 +168,7 @@ PyObject * UnaryFunction0DUnsigned___call__( BPy_UnaryFunction0DUnsigned *self, return NULL; if( typeid(*(self->uf0D_unsigned)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_unsigned->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp index 946210ee381..6dc2aa52a78 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp @@ -174,7 +174,7 @@ PyObject * UnaryFunction0DVec2f___call__( BPy_UnaryFunction0DVec2f *self, PyObje return NULL; if( typeid(*(self->uf0D_vec2f)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_vec2f->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp index d3d0a6593ca..7f2c78f8d00 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp @@ -168,7 +168,7 @@ PyObject * UnaryFunction0DVec3f___call__( BPy_UnaryFunction0DVec3f *self, PyObje return NULL; if( typeid(*(self->uf0D_vec3f)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_vec3f->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp index 24715a4cbfa..dd1854b86d8 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp @@ -168,7 +168,7 @@ PyObject * UnaryFunction0DVectorViewShape___call__( BPy_UnaryFunction0DVectorVie return NULL; if( typeid(*(self->uf0D_vectorviewshape)) == typeid(UnaryFunction0D< std::vector >) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_vectorviewshape->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp index 2fe1e61dcf3..7a1aeed0e72 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp @@ -174,7 +174,7 @@ PyObject * UnaryFunction0DViewShape___call__( BPy_UnaryFunction0DViewShape *self return NULL; if( typeid(*(self->uf0D_viewshape)) == typeid(UnaryFunction0D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf0D_viewshape->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) { -- cgit v1.2.3