Bugfix for bugfix of Token::varId - Change Token::type also if varId is set to 0

This commit is contained in:
PKEuS 2012-08-26 10:04:22 +02:00
parent 662b0d2dbe
commit 8301b5d4d6
1 changed files with 2 additions and 0 deletions

View File

@ -303,6 +303,8 @@ public:
_varId = id; _varId = id;
if (id != 0) if (id != 0)
_type = eVariable; _type = eVariable;
else
update_property_info();
} }
/** /**