commontk / AppLauncher

Simple and small program allowing to set the environment of any executable.
http://www.commontk.org
Apache License 2.0
31 stars 32 forks source link

COMP: Fix deprecation warning C4996 #113

Closed jamesobutler closed 4 years ago

jamesobutler commented 4 years ago

This PR fixes some C4996 deprecation warnings. cc: @jcfr

warning C4996: 'fileno': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _fileno. See online help for details.

warning C4996: 'QList<QString>::toSet': Use QSet<T>(list.begin(), list.end()) instead.

warning C4996: 'QString::SkipEmptyParts': was declared deprecated

warning C4996: 'QString::split': Use Qt::SplitBehavior variant instead

warning C4996: 'QSet<T>::toList': Use values() instead.