fixed a rounding error, and made tables quiet

This commit is contained in:
buster 1998-04-30 15:20:23 +00:00
Родитель b419f27870
Коммит 91aae361d3
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -39,7 +39,7 @@
#ifdef NS_DEBUG
static PRBool gsDebug = PR_TRUE;
static PRBool gsDebug = PR_FALSE;
static PRBool gsDebugCLD = PR_FALSE;
static PRBool gsTiming = PR_FALSE;
static PRBool gsDebugMBP = PR_FALSE;

Просмотреть файл

@ -1090,9 +1090,9 @@ void nsTablePart::GetTableBorder(nsIHTMLContent* aContent,
aContext->GetData(kStyleSpacingSID);
float p2t = aPresContext->GetPixelsToTwips();
nscoord twips = aForCell
? NS_TO_INT_ROUND(1 * p2t)
: NS_TO_INT_ROUND(value.GetIntValue() * p2t);
nscoord two = NS_TO_INT_ROUND(2 * p2t);
? nscoord(NS_INT_PIXELS_TO_TWIPS(1, p2t))
: nscoord(NS_INT_PIXELS_TO_TWIPS(value.GetIntValue(), p2t));
nscoord two = nscoord(NS_INT_PIXELS_TO_TWIPS(2,p2t));
#if 0
// XXX do I need to do this or can I assert that it's zero?

Просмотреть файл

@ -39,7 +39,7 @@
#ifdef NS_DEBUG
static PRBool gsDebug = PR_TRUE;
static PRBool gsDebug = PR_FALSE;
static PRBool gsDebugCLD = PR_FALSE;
static PRBool gsTiming = PR_FALSE;
static PRBool gsDebugMBP = PR_FALSE;