Lin-specific: Fix command line parsing for non-ASCII symbols

This commit is contained in:
Abs62 2017-03-15 17:47:07 +03:00
parent edf52a6fac
commit 720c95dd22

View file

@ -223,7 +223,11 @@ int main( int argc, char ** argv )
{}
}
GDCommandLine gdcl( argc, argv );
#if defined( Q_OS_UNIX )
setlocale( LC_ALL, "" ); // use correct char set mapping
#endif
GDCommandLine gdcl( argc, argv );
if ( gdcl.needCrashReport() )
{