ProjectNodes: Fix line() method

Actually return the value of the m_line member varibale instead of -1.

Change-Id: I23ee47638e9b35cafcedca827790b4c2e0a02462
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Tobias Hunger
2014-07-22 13:15:03 +02:00
parent 1705fb8698
commit 26bb6537b4

View File

@@ -161,7 +161,7 @@ QString Node::path() const
int Node::line() const
{
return -1;
return m_line;
}
QString Node::displayName() const