Skip to content

Commit

Permalink
Fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
rpeyron committed Apr 22, 2019
1 parent 7a50eb1 commit 97e406d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xtnXmlTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ int xtnXmlTree::getDiffIcon(int defIcon, xmlNodePtr child)
if (sxTemp == BAD_CAST "added") icon = TI_ADDED;
else if (sxTemp == BAD_CAST "removed") icon = TI_REMOVED;
else if (sxTemp == BAD_CAST "modified") icon = TI_MODIFIED;
else icon = TI_BELOW;
else if (sxTemp == BAD_CAST "below") icon = TI_BELOW;
xmlFree(strTemp);
}
}
Expand Down

0 comments on commit 97e406d

Please sign in to comment.