Skip to content

Commit e6aa4a1

Browse files
authored
Turning off Qt 5.15.1 deprecation warning. (#412)
1 parent 5feb1fe commit e6aa4a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uitools/cpp/Esri/ArcGISRuntime/Toolkit/Internal/GenericTableProxyModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace
4343
*/
4444
QString toTitleCase(const QString& string)
4545
{
46-
QStringList parts = string.split(' ', QString::SkipEmptyParts);
46+
QStringList parts = string.split(' ', Qt::SkipEmptyParts);
4747
for (auto& part: parts)
4848
{
4949
part.replace(0, 1, part.at(0).toUpper());

0 commit comments

Comments
 (0)