| 361 | */ |
| 362 | template <typename SeparatorType> |
| 363 | QStringList SplitSkipEmptyParts(const QString& string, const SeparatorType& separator) |
| 364 | { |
| 365 | #if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)) |
| 366 | return string.split(separator, Qt::SkipEmptyParts); |
| 367 | #else |
| 368 | return string.split(separator, QString::SkipEmptyParts); |
| 369 | #endif |
| 370 | } |
| 371 | |
| 372 | /** |
| 373 | * Queue a function to run in an object's event loop. This can be |
no outgoing calls
no test coverage detected