summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code.l b/src/code.l
index 45429c3..b932a43 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2474,7 +2474,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
<Body>{FLOWCONDITION}/{BN}*"(" {
if (g_currentMemberDef && g_currentMemberDef->isFunction())
{
- g_currentMemberDef->addFlowKeyWord();
+ g_currentMemberDef->incrementFlowKeyWordCount();
}
startFontClass("keywordflow");
codifyLines(yytext);
@@ -2495,7 +2495,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
<Body>{FLOWCONDITION}/([^a-z_A-Z0-9]) {
if (g_currentMemberDef && g_currentMemberDef->isFunction())
{
- g_currentMemberDef->addFlowKeyWord();
+ g_currentMemberDef->incrementFlowKeyWordCount();
}
startFontClass("keywordflow");
codifyLines(yytext);
@@ -2513,7 +2513,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
<Body>{FLOWCONDITION}/{B}* {
if (g_currentMemberDef && g_currentMemberDef->isFunction())
{
- g_currentMemberDef->addFlowKeyWord();
+ g_currentMemberDef->incrementFlowKeyWordCount();
}
startFontClass("keywordflow");
codifyLines(yytext);
@@ -3052,7 +3052,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
<MemberCall2,FuncCall>{FLOWCONDITION}/([^a-z_A-Z0-9]) {
if (g_currentMemberDef && g_currentMemberDef->isFunction())
{
- g_currentMemberDef->addFlowKeyWord();
+ g_currentMemberDef->incrementFlowKeyWordCount();
}
addParmType();
g_parmName=yytext;