In Qt 5.6 there is a new feature in Qt Core: QDir::listSeparator
QChar QDir::listSeparator
It returns ';' on Windows and ':' on Unix systems, this is native path list separator, i.e symbol which separates paths in a list.
The aim of introducing this QDir::listSeparator is to replace possible ifdefs in your code and maintain good-looking code on various platforms.
No comments:
Post a Comment