mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Calc: Fixed Enter key
svn path=/trunk/; revision=18847
This commit is contained in:
parent
8afabfad9e
commit
d74ef35a60
1 changed files with 2 additions and 3 deletions
|
@ -3412,12 +3412,11 @@ int parse(int wParam, int lParam)
|
||||||
else {
|
else {
|
||||||
calc.memory = calc_atof(calc.buffer, calc.numBase);
|
calc.memory = calc_atof(calc.buffer, calc.numBase);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
break;
|
// fall through for Enter processing
|
||||||
|
|
||||||
// fall through for Enter processing ... but there is a bug here in Ctrl+M vs. Return
|
|
||||||
case TEXT('='):
|
case TEXT('='):
|
||||||
{
|
{
|
||||||
calcfloat r = calc.operand;
|
calcfloat r = calc.operand;
|
||||||
|
|
Loading…
Reference in a new issue