summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r--src/docparser.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index ee0d83a..33cccff 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -1247,6 +1247,8 @@ void DocInclude::parse()
DBG(("DocInclude::parse(file=%s,text=%s)\n",m_file.data(),m_text.data()));
switch(m_type)
{
+ case IncWithLines:
+ // fall through
case Include:
// fall through
case DontInclude:
@@ -3819,6 +3821,9 @@ int DocPara::handleCommand(const QString &cmdName)
case CMD_INCLUDE:
handleInclude(cmdName,DocInclude::Include);
break;
+ case CMD_INCWITHLINES:
+ handleInclude(cmdName,DocInclude::IncWithLines);
+ break;
case CMD_DONTINCLUDE:
handleInclude(cmdName,DocInclude::DontInclude);
break;