1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Author: Laszlo Kajan <lkajan@rostlab.org>
Description: fix for spelling errors
Forwarded: http://lists.alioth.debian.org/pipermail/debian-med-packaging/2012-August/016975.html
--- a/wrapper/src/DataInfoPyWrap.C
+++ b/wrapper/src/DataInfoPyWrap.C
@@ -31,23 +31,23 @@ struct DataInfo_wrapper : DataInfo, bp::
}
virtual ::std::vector< std::string > const & GetCatAttribute( ::std::string const & catName, ::std::string const & refCatName, ::std::string const & refAttribName ){
- throw std::logic_error("warning W1049: This method could not be overriden in Python - method returns reference to local variable!");
+ throw std::logic_error("warning W1049: This method could not be overridden in Python - method returns reference to local variable!");
}
virtual ::std::vector< std::string > const & GetCatKeys( ::std::string const & catName ){
- throw std::logic_error("warning W1049: This method could not be overriden in Python - method returns reference to local variable!");
+ throw std::logic_error("warning W1049: This method could not be overridden in Python - method returns reference to local variable!");
}
virtual ::std::vector< std::string > const & GetCatNames( ){
- throw std::logic_error("warning W1049: This method could not be overriden in Python - method returns reference to local variable!");
+ throw std::logic_error("warning W1049: This method could not be overridden in Python - method returns reference to local variable!");
}
virtual ::std::vector< std::string > const & GetItemAttribute( ::std::string const & itemName, ::std::string const & refCatName, ::std::string const & refAttribName ){
- throw std::logic_error("warning W1049: This method could not be overriden in Python - method returns reference to local variable!");
+ throw std::logic_error("warning W1049: This method could not be overridden in Python - method returns reference to local variable!");
}
virtual ::std::vector< std::string > const & GetItemsNames( ){
- throw std::logic_error("warning W1049: This method could not be overriden in Python - method returns reference to local variable!");
+ throw std::logic_error("warning W1049: This method could not be overridden in Python - method returns reference to local variable!");
}
virtual void GetItemsTypes( ::std::vector< eTypeCode > & attribsTypes, ::std::string const & catName, ::std::vector< std::string > const & attribsNames ) {
|