File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -763,8 +763,10 @@ static void updateSystemPrivate()
763763 const ushort group = res.toString ().at (0 ).unicode ();
764764 if (group != globalLocaleData.m_decimal )
765765 globalLocaleData.m_group = group;
766- else if (group == globalLocaleData.m_group )
767- qWarning (" System-supplied decimal and grouping character are both 0x%hx" , group);
766+ // LF-38131 When the grouping character and decimal character are the same, this will prevent an app from opening as
767+ // Qt is not fully initialised. So do not show this warning now (this was removed in future commits)
768+ // else if (group == globalLocaleData.m_group)
769+ // qWarning("System-supplied decimal and grouping character are both 0x%hx", group);
768770 }
769771
770772 res = sys_locale->query (QSystemLocale::ZeroDigit, QVariant ());
You can’t perform that action at this time.
0 commit comments