svn merge -r 21041:21301 https://svn.blender.org/svnroot/bf-blender/branches/blender2.5/blender
This commit is contained in:
@@ -29,7 +29,6 @@
|
||||
const STR_String CBoolValue::sTrueString = "TRUE";
|
||||
const STR_String CBoolValue::sFalseString = "FALSE";
|
||||
|
||||
|
||||
CBoolValue::CBoolValue()
|
||||
/*
|
||||
pre: false
|
||||
@@ -210,5 +209,5 @@ CValue* CBoolValue::GetReplica()
|
||||
|
||||
PyObject* CBoolValue::ConvertValueToPython()
|
||||
{
|
||||
return PyInt_FromLong(m_bool != 0);
|
||||
return PyBool_FromLong(m_bool != 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user