mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-14 22:03:16 -06:00
.OfficeAutomation: Fixes for 64 bits
git-svn-id: svn://ultimatepp.org/upp/trunk@5771 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
99a41094e6
commit
ccdb7dd1b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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]);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue