mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[MSI] Fix empty disc costing (Terragen, ...) (#5201)
JIRA issue: CORE-18749
This commit is contained in:
parent
e13c3e856f
commit
ce562727b8
1 changed files with 9 additions and 0 deletions
|
@ -3159,6 +3159,15 @@ static void msi_dialog_vcl_add_columns( msi_dialog *dialog, msi_control *control
|
||||||
* if a width is invalid, all remaining columns are hidden
|
* if a width is invalid, all remaining columns are hidden
|
||||||
*/
|
*/
|
||||||
if ( !wcsncmp( num, L"-", 1 ) || !str_is_number( num ) ) {
|
if ( !wcsncmp( num, L"-", 1 ) || !str_is_number( num ) ) {
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
// Skip in case of prefix the string of displayed characters with {\style} or {&style}.
|
||||||
|
if (count == 0 && (!wcsncmp(num, L"\\", 1) || !wcsncmp(num, L"&", 1)))
|
||||||
|
{
|
||||||
|
FIXME("Style prefix not supported\n");
|
||||||
|
msi_free(num);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
msi_free( num );
|
msi_free( num );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue