mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-30 20:34:27 +01:00
Coord: do not refuse lowercase coordinates.
It fixes a regression introduced in bedcc56
.
This commit is contained in:
parent
d55b3b2bdf
commit
dc3535c953
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ void Coord::setFromString(const wstring &iWStr)
|
|||
setCol(col);
|
||||
setRow(row);
|
||||
// Input such as "A12foo#bar&stuff" should be invalid
|
||||
if (isValid() && toString() != iWStr)
|
||||
if (isValid() && toString() != toUpper(iWStr))
|
||||
setCol(-1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue