diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-06-17 21:52:39 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-06-17 21:52:39 (GMT) |
commit | 07d8a4eecd726ab7343ad2768cffe23183575c19 (patch) | |
tree | 658800d86b11f1e8bdfc225943d76d1059544220 | |
parent | db51e5dd2365d2f25cb1d386f9e4a5632498e736 (diff) | |
download | Doxygen-07d8a4eecd726ab7343ad2768cffe23183575c19.zip Doxygen-07d8a4eecd726ab7343ad2768cffe23183575c19.tar.gz Doxygen-07d8a4eecd726ab7343ad2768cffe23183575c19.tar.bz2 |
Fixed regression introduced by fixed bug Bug 700740
-rw-r--r-- | src/util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.cpp b/src/util.cpp index b66932e..0fd341b 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -4090,14 +4090,14 @@ bool getDefs(const QCString &scName, { cd=tmd->getClassDef(); md=emd; + return TRUE; } else { cd=0; md=0; + return FALSE; } - //printf("result cd=%p md=%p\n",cd,md); - return TRUE; } } } |