summaryrefslogtreecommitdiffstats
path: root/src/definition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/definition.h')
-rw-r--r--src/definition.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/definition.h b/src/definition.h
index 38a11b2..bf7f38c 100644
--- a/src/definition.h
+++ b/src/definition.h
@@ -179,7 +179,7 @@ class Definition : public DefinitionIntf, public LockableObj
QCString getDefFileExtension() const;
/*! returns the line number at which the definition was found */
- int getDefLine() const;
+ int getDefLine() const { return m_defLine; }
/*! Returns TRUE iff the definition is documented
* (which could be generated documentation)
@@ -348,7 +348,7 @@ class Definition : public DefinitionIntf, public LockableObj
QCString m_name;
bool m_isSymbol;
QCString m_symbolName;
-
+ int m_defLine;
};
class DefinitionList : public QList<Definition>, public DefinitionIntf