.OfficeAutomation: Fixes for 64 bits

git-svn-id: svn://ultimatepp.org/upp/trunk@5771 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2013-02-08 11:16:50 +00:00
parent 99a41094e6
commit ccdb7dd1b0

View file

@ -22,8 +22,8 @@ OfficeSheet::~OfficeSheet() {
void OfficeSheet::CellToColRow(const char *cell, int &col, int &row) {
String s_col;
int lenCell = int(strlen(cell));
int i;
int lenCell = strlen(cell);
for (i = 0; (i < lenCell) && (cell[i] >= 'A') && (cell[i] <= 'Z'); ++i)
s_col.Cat(cell[i]);