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:
Magnus Olsen
2005-12-18 17:52:28 +00:00
parent 0a59d4d1ba
commit 98a12a8380
+16
View File
@@ -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;