MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / QVariantListToQList

Function QVariantListToQList

src/SessionManager.cpp:48–54  ·  view source on GitHub ↗

Do the opposite of the function above

Source from the content-addressed store, hash-verified

46
47// Do the opposite of the function above
48static QList<int> QVariantListToQList(const QVariantList &variantList) {
49 QList<int> intList;
50 for (const QVariant &variant : variantList) {
51 intList.append(variant.toInt());
52 }
53 return intList;
54}
55
56SessionManager::SessionManager(NotepadNextApplication *app, SessionFileTypes types)
57 : app(app)

Callers 1

loadEditorViewDetailsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected