1
0
mirror of https://github.com/shuchkin/simplexlsxgen.git synced 2023-08-10 21:12:59 +03:00

Corrected const C_NORMAL value

This commit is contained in:
mrjemson
2022-04-22 17:59:30 +10:00
committed by GitHub
parent 0dafc8bf9e
commit d84c842d38

View File

@ -31,7 +31,7 @@ class SimpleXLSXGen {
const F_ITALIC = 4;
const F_UNDERLINE = 8;
const F_STRIKE = 16;
const C_NORMAL = 000;
const C_NORMAL = 0;
const A_DEFAULT = 0;
const A_LEFT = 1;
const A_RIGHT = 2;