MCPcopy Create free account
hub / github.com/KDE/kid3 / cstringArrayToStringList

Function cstringArrayToStringList

src/plugins/kid3qml/scriptutils.cpp:50–57  ·  view source on GitHub ↗

* Create a string list from a NULL terminated array of C strings. */

Source from the content-addressed store, hash-verified

48 * Create a string list from a NULL terminated array of C strings.
49 */
50QStringList cstringArrayToStringList(const char* const* strs)
51{
52 QStringList result;
53 while (*strs) {
54 result.append(QCoreApplication::translate("@default", *strs++));
55 }
56 return result;
57}
58
59}
60

Callers 5

getFieldIdNamesMethod · 0.85
getTextEncodingNamesMethod · 0.85
getPictureTypeNamesMethod · 0.85
getContentTypeNamesMethod · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected