Cleanup: use '#' prefix for issues instead of 'T'
Match the convention from Gitea instead of Phabricator's T for tasks.
This commit is contained in:
@@ -727,12 +727,12 @@ bool BPy_IDProperty_Map_ValidateAndCreate(PyObject *name_obj, IDProperty *group,
|
||||
else {
|
||||
IDProperty *prop_exist;
|
||||
|
||||
/* avoid freeing when types match in case they are referenced by the UI, see: T37073
|
||||
/* avoid freeing when types match in case they are referenced by the UI, see: #37073
|
||||
* obviously this isn't a complete solution, but helps for common cases. */
|
||||
prop_exist = IDP_GetPropertyFromGroup(group, prop->name);
|
||||
if ((prop_exist != NULL) && (prop_exist->type == prop->type) &&
|
||||
(prop_exist->subtype == prop->subtype)) {
|
||||
/* Preserve prev/next links!!! See T42593. */
|
||||
/* Preserve prev/next links!!! See #42593. */
|
||||
prop->prev = prop_exist->prev;
|
||||
prop->next = prop_exist->next;
|
||||
prop->flag = prop_exist->flag;
|
||||
|
||||
Reference in New Issue
Block a user