Skip to content

Make url parsing locale-independent

Michael Migliore requested to merge michael.migliore/paraview:url-locale into master

When the simulator is using a locale, the parsing of the InSituPort variable (which is an integer, defaulted to 22222) can contain an additional decimal separator.
E.g. when using us.utf_8, the resulting string is 22,222 making the connection process failing by trying to connect to port 22.
When forcing the locale to classic(), the decimal sperator is not present anymore making the connection successful.

Edited by Michael Migliore

Merge request reports