diff options
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index 08b16b2..fb21f39 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -34,14 +34,14 @@ \a the file name, and \a ref is an HTML anchor name if the file was read from a tag file or 0 otherwise */ -FileDef::FileDef(const char *p,const char *nm,const char *ref) +FileDef::FileDef(const char *p,const char *nm,const char *lref) : Definition((QCString)p+nm,1,nm) { path=p; filepath=path+nm; filename=nameToFile(nm); diskname=filename.copy(); - setReference(ref); + setReference(lref); classList = new ClassList; includeList = new QList<IncludeInfo>; includeList->setAutoDelete(TRUE); |