mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 14:08:22 +00:00
fixing a small bug : LTEXT, GROUPBOX, DEFPUSHBUTTON, PUSHBUTTON, ICON, EDITTEXT, LISTBOX, COMBOBOX (function DialogCMDBuild1) adding a emty style tag to thuse xml syntax.
fixing a small bug : Rename MENUSEPARATOR to MENUITEMSEPERATOR Thanks frik85 svn path=/trunk/; revision=24850
This commit is contained in:
parent
4e4647e514
commit
9e2ffe9e12
1 changed files with 17 additions and 6 deletions
|
@ -1167,7 +1167,7 @@ void ParserMenu(unsigned char *text, long *pos, unsigned char *buf, long buf_siz
|
||||||
trim(output_resid);
|
trim(output_resid);
|
||||||
if (strcmp(output_resid,"SEPARATOR")==0)
|
if (strcmp(output_resid,"SEPARATOR")==0)
|
||||||
{
|
{
|
||||||
sprintf(output_format,"%s<obj type=\"MENUSEPARATOR\"></obj>\n",output_format);
|
sprintf(output_format,"%s<obj type=\"MENUITEMSEPERATOR\"></obj>\n",output_format);
|
||||||
*output_resid='\0';
|
*output_resid='\0';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1620,12 +1620,23 @@ void DialogCMDBuild1(unsigned char *output_resid, unsigned char *output_format,
|
||||||
output_format[size]='\0';
|
output_format[size]='\0';
|
||||||
foundPos=0;
|
foundPos=0;
|
||||||
find_str(' ',extra,&foundPos);
|
find_str(' ',extra,&foundPos);
|
||||||
}
|
|
||||||
|
if (*output_resid!='\0')
|
||||||
if (*output_resid!='\0')
|
{
|
||||||
sprintf(output_format,"%s\"><![CDATA[%s]]></obj>\n",output_format,output_resid);
|
sprintf(output_format,"%s\"><![CDATA[%s]]></obj>\n",output_format,output_resid);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sprintf(output_format,"%s\"></obj>\n",output_format);
|
||||||
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
sprintf(output_format,"%s\"></obj>\n",output_format);
|
{
|
||||||
|
if (*output_resid!='\0')
|
||||||
|
sprintf(output_format,"%s\" style=\"\"><![CDATA[%s]]></obj>\n",output_format,output_resid);
|
||||||
|
else
|
||||||
|
sprintf(output_format,"%s\" style=\"\"></obj>\n",output_format);
|
||||||
|
}
|
||||||
|
|
||||||
*output_resid='\0';
|
*output_resid='\0';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue