Skip to content

Avoid using QString::split

Nicolas Fella requested to merge work/nosplit into master

We are only interested in the first element of the splitted string, but split will compute all of them. This has some significant performance impact. Instead use indexOf+left to get the first element

Merge request reports