aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2018-08-29 16:11:36 +0200
committerCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2018-09-03 08:53:48 +0000
commit3d34fd298735ba352d0b6e48a7778f8820a9ddc2 (patch)
tree0bc2ee92900d97e23e49687dd08b41d905e18742
parentc1756476fc073bd827b545e6d530ce38a71e9cfe (diff)
shiboken/doc generator: Add FunctionMask case to avoid warning
Change-Id: I13226628db54479cc01aab215bb52063684f23c9 Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp
index 3ed278871..d47ba8bd7 100644
--- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp
+++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp
@@ -267,6 +267,8 @@ static const char *linkKeyWord(QtXmlToSphinx::LinkContext::Type type)
return ":ref:";
case QtXmlToSphinx::LinkContext::External:
break;
+ case QtXmlToSphinx::LinkContext::FunctionMask:
+ break;
}
return "";
}