diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-07-30 11:50:47 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-07-30 11:50:47 (GMT) |
commit | b52706b8ee01f45cc3616c52c78dcc8b2d21b464 (patch) | |
tree | 9391776db3bc44d5acf35b3339a8ce3037b8acac /src/util.cpp | |
parent | 4ae47ae6f238d465eefa1b5a85c0cf3f7857bc57 (diff) | |
parent | e634088616c07a7e5d7e6dc91c8bb3f973637d58 (diff) | |
download | Doxygen-b52706b8ee01f45cc3616c52c78dcc8b2d21b464.zip Doxygen-b52706b8ee01f45cc3616c52c78dcc8b2d21b464.tar.gz Doxygen-b52706b8ee01f45cc3616c52c78dcc8b2d21b464.tar.bz2 |
Merge branch 'albert-github-feature/bug_direction'
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/util.cpp b/src/util.cpp index 13ae200..bebfbb1 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -8137,14 +8137,13 @@ bool classVisibleInIndex(const ClassDef *cd) QCString extractDirection(QCString &docs) { - QRegExp re("\\[[^\\]]+\\]"); // [...] + QRegExp re("\\[[ inout,]+\\]"); // [...] int l=0; if (re.match(docs,0,&l)==0) { - int inPos = docs.find("in", 1,FALSE); - int outPos = docs.find("out",1,FALSE); - bool input = inPos!=-1 && inPos<l; - bool output = outPos!=-1 && outPos<l; + QCString dir=docs.left(l); + bool input = dir.find("in")!=-1; + bool output = dir.find("out")!=-1; if (input || output) // in,out attributes { docs = docs.mid(l); // strip attributes |