fixes 0002978 spreadsheet row problem for rows above AA
This commit is contained in:
@@ -176,7 +176,7 @@ int App::validColumn(const std::string &colstr)
|
||||
}
|
||||
else {
|
||||
col = 0;
|
||||
for (std::string::const_reverse_iterator i = colstr.rbegin(); i != colstr.rend(); ++i) {
|
||||
for (std::string::const_iterator i = colstr.begin(); i != colstr.end(); ++i) {
|
||||
int v;
|
||||
|
||||
if ((*i >= 'A' && *i <= 'Z'))
|
||||
|
||||
Reference in New Issue
Block a user