summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-12-07 22:20:35 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-12-07 22:20:35 (GMT)
commit436efb218557f74deb45705c0c8153265d502022 (patch)
tree51f8ef3c05f854ddeef272c5eef822f4b6784353 /src
parent182bd7cda2842cac622bf9ead4fd4a59f485d910 (diff)
parent30535da9d0d7d5f71a2faaca30641361a888358b (diff)
downloadDoxygen-436efb218557f74deb45705c0c8153265d502022.zip
Doxygen-436efb218557f74deb45705c0c8153265d502022.tar.gz
Doxygen-436efb218557f74deb45705c0c8153265d502022.tar.bz2
Merge pull request #64 from albert-github/feature/bug_719489
Bug 719489 - Label "abstract" instead of "pure virtual" for Java language
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 6160158..0807aaa 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -1355,7 +1355,14 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
if (!insidePHP)
{
current->type += " abstract ";
- current->virt = Pure;
+ if (!insideJava)
+ {
+ current->virt = Pure;
+ }
+ else
+ {
+ current->spec|=Entry::Abstract;
+ }
}
else
{