aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/messages.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-10-12 09:23:49 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-10-28 09:08:41 +0000
commitfb1c0f204e09ba29fa3d360d72231d4ed468c1e4 (patch)
treef44b20666e01425aa5e99d710ea3a06ac9697ef0 /sources/shiboken2/ApiExtractor/messages.h
parent5de0db2391c719ef6c484813cc4aee61da355160 (diff)
shiboken2: Add location to error messages about added functions
Change-Id: I39210642a96e98328d193f4e81ecad82b496d6c9 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/shiboken2/ApiExtractor/messages.h')
-rw-r--r--sources/shiboken2/ApiExtractor/messages.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sources/shiboken2/ApiExtractor/messages.h b/sources/shiboken2/ApiExtractor/messages.h
index 55481270c..1e58a7fad 100644
--- a/sources/shiboken2/ApiExtractor/messages.h
+++ b/sources/shiboken2/ApiExtractor/messages.h
@@ -49,10 +49,12 @@ QT_FORWARD_DECLARE_CLASS(QXmlStreamReader)
QString msgAddedFunctionInvalidArgType(const QString &addedFuncName,
const QString &typeName,
- int pos, const QString &why);
+ int pos, const QString &why,
+ const AbstractMetaClass *context = nullptr);
QString msgAddedFunctionInvalidReturnType(const QString &addedFuncName,
- const QString &typeName, const QString &why);
+ const QString &typeName, const QString &why,
+ const AbstractMetaClass *context = nullptr);
QString msgNoFunctionForModification(const AbstractMetaClass *klass,
const QString &signature,