On 11/17/2009 05:14 PM, André Hentschel wrote:
- for(i=0;i<sizeof(TestName)/sizeof(TestName[0]);i++)
- {
- lstrcpyA(lf.lfFaceName, TestName[i]);
Hi André,
Even though it would slightly change the size of the patch, I wouldn't mind some indentation here (and it would be more in line with the style of the file).
You should also try to keep with the current style in that file (meaning a space after the semi-colon) with respect to the for() statement.
Paul Vriens schrieb:
On 11/17/2009 05:14 PM, André Hentschel wrote:
- for(i=0;i<sizeof(TestName)/sizeof(TestName[0]);i++)
- {
- lstrcpyA(lf.lfFaceName, TestName[i]);
Hi André,
Even though it would slightly change the size of the patch, I wouldn't mind some indentation here (and it would be more in line with the style of the file).
You should also try to keep with the current style in that file (meaning a space after the semi-colon) with respect to the for() statement.
Of course you are right! Thanks