Do the opposite of the function above
| 46 | |
| 47 | // Do the opposite of the function above |
| 48 | static 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 | |
| 56 | SessionManager::SessionManager(NotepadNextApplication *app, SessionFileTypes types) |
| 57 | : app(app) |
no outgoing calls
no test coverage detected