Return a QStringList wrapper instead of a python list in Converter::toPython.
This commit is contained in:
parent
a025ecb863
commit
4df12e7cba
1 changed files with 1 additions and 1 deletions
|
|
@ -12,6 +12,6 @@ inline QStringList Converter<QStringList>::toCpp(PyObject* pyObj)
|
||||||
|
|
||||||
inline PyObject* Converter<QStringList>::toPython(const QStringList& cppObj)
|
inline PyObject* Converter<QStringList>::toPython(const QStringList& cppObj)
|
||||||
{
|
{
|
||||||
return StdListConverter<QStringList>::toPython(cppObj);
|
return ValueTypeConverter<QStringList>::toPython(cppObj);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue