Merge branch 'master' of ssh://git.code.sf.net/p/free-cad/code
This commit is contained in:
commit
d449cab279
|
@ -281,7 +281,12 @@ PropertyEnumeration::~PropertyEnumeration()
|
||||||
|
|
||||||
void PropertyEnumeration::setEnums(const char **plEnums)
|
void PropertyEnumeration::setEnums(const char **plEnums)
|
||||||
{
|
{
|
||||||
|
// Setting the enum is done only once inside the constructor
|
||||||
|
// but before the current index is already set. So, this needs
|
||||||
|
// to be preserved.
|
||||||
|
int index = _enum._index;
|
||||||
_enum.setEnums(plEnums);
|
_enum.setEnums(plEnums);
|
||||||
|
_enum._index = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PropertyEnumeration::setValue(const char *value)
|
void PropertyEnumeration::setValue(const char *value)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user