diff options
Diffstat (limited to 'sources/shiboken6/ApiExtractor/messages.cpp')
| -rw-r--r-- | sources/shiboken6/ApiExtractor/messages.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sources/shiboken6/ApiExtractor/messages.cpp b/sources/shiboken6/ApiExtractor/messages.cpp index 5fe9fb9c7..235f03ab9 100644 --- a/sources/shiboken6/ApiExtractor/messages.cpp +++ b/sources/shiboken6/ApiExtractor/messages.cpp @@ -685,6 +685,18 @@ QString msgCannotFindSmartPointer(const QString &instantiationType, return result; } +QString msgCannotFindSmartPointerGetter(const SmartPointerTypeEntry *te) +{ + return u"Getter \""_qs + te->getter() + u"()\" of smart pointer \""_qs + + te->name() + u"\" not found."_qs; +} + +QString msgCannotFindSmartPointerRefCount(const SmartPointerTypeEntry *te) +{ + return u"Ref count method \""_qs + te->refCountMethodName() + + u"()\" of smart pointer \""_qs + te->name() + u"\" not found."_qs; +} + QString msgMethodNotFound(const AbstractMetaClass *klass, const QString &name) { return u"Method \""_qs + name + u"\" not found in class "_qs |
