mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
fix follow bug hex->dec, bin->dec, oct->dec, now all converting should work fine. I have not found any more problem with it.
svn path=/trunk/; revision=20249
This commit is contained in:
@@ -3016,6 +3016,8 @@ void calc_buffer_display(CALC *calc) {
|
||||
int lz = 0;
|
||||
int exp = 0;
|
||||
|
||||
|
||||
|
||||
real = calc_atof(calc->buffer,old_base);
|
||||
_stprintf(s, FMT_DESC_EXP, real);
|
||||
// remove leading zeros in exponent
|
||||
@@ -3056,6 +3058,20 @@ void calc_buffer_display(CALC *calc) {
|
||||
// add point if missing
|
||||
// display
|
||||
|
||||
if (old_base != calc->numBase)
|
||||
{
|
||||
if (calc->buffer[0]==_T('\0'))
|
||||
{
|
||||
real = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
real = calc_atof(calc->buffer, old_base);
|
||||
}
|
||||
_stprintf(calc->display, _T("%.f"), real);
|
||||
_stprintf(calc->buffer, _T("%.f"), real);
|
||||
}
|
||||
|
||||
_tcscpy(s,calc->buffer);
|
||||
p = s;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user