remove redundant assignments & unused vars.
also minor functional changes - OBJECT_OT_make_links_data() type property is now assigned to the operator property (so popup menu can find it) - removing BG image now returns cancelled if no image is removed.
This commit is contained in:
@@ -410,7 +410,7 @@ int BLI_isGraphCyclic(BGraph *graph)
|
||||
|
||||
BArc * BLI_findConnectedArc(BGraph *graph, BArc *arc, BNode *v)
|
||||
{
|
||||
BArc *nextArc = arc->next;
|
||||
BArc *nextArc;
|
||||
|
||||
for(nextArc = graph->arcs.first; nextArc; nextArc = nextArc->next)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user