summaryrefslogtreecommitdiffstats
path: root/src/config.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.l')
-rw-r--r--src/config.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.l b/src/config.l
index 1f72fe6..2ee393e 100644
--- a/src/config.l
+++ b/src/config.l
@@ -178,11 +178,11 @@ void ConfigBool::convertStrToVal()
QCString val = m_valueString.stripWhiteSpace().lower();
if (!val.isEmpty())
{
- if (val=="yes" || val=="true" || val=="1")
+ if (val=="yes" || val=="true" || val=="1" || val=="all")
{
m_value=TRUE;
}
- else if (val=="no" || val=="false" || val=="0")
+ else if (val=="no" || val=="false" || val=="0" || val=="none")
{
m_value=FALSE;
}