src: replaced references to NODE_FILE with call to isFile

This commit is contained in:
mlangkabel
2017-12-07 14:52:12 +01:00
parent b02596ddfa
commit 91b0c5d05f
9 changed files with 34 additions and 13 deletions
@@ -28,7 +28,7 @@ public:
for (size_t i = 0; i < m_matches.size(); i++)
{
ss << '@';
if (m_matches[i].nodeType.getType() == NodeType::NODE_FILE)
if (m_matches[i].nodeType.isFile())
{
ss << m_matches[i].subtext;
}