aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/messages.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/ApiExtractor/messages.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/messages.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/shiboken6/ApiExtractor/messages.cpp b/sources/shiboken6/ApiExtractor/messages.cpp
index c074df785..8898a3cf9 100644
--- a/sources/shiboken6/ApiExtractor/messages.cpp
+++ b/sources/shiboken6/ApiExtractor/messages.cpp
@@ -677,10 +677,10 @@ QString msgCannotFindSmartPointerGetter(const SmartPointerTypeEntry *te)
+ te->name() + u"\" not found."_qs;
}
-QString msgCannotFindSmartPointerRefCount(const SmartPointerTypeEntry *te)
+QString msgCannotFindSmartPointerMethod(const SmartPointerTypeEntry *te, const QString &m)
{
- return u"Ref count method \""_qs + te->refCountMethodName()
- + u"()\" of smart pointer \""_qs + te->name() + u"\" not found."_qs;
+ return u"Method \""_qs + m + u"()\" of smart pointer \""_qs
+ + te->name() + u"\" not found."_qs;
}
QString msgMethodNotFound(const AbstractMetaClass *klass, const QString &name)