(svn r18332) -Fix: the MSVC compile warnings

This commit is contained in:
rubidium
2009-11-29 01:00:03 +00:00
parent 55897be79b
commit 948512883b
3 changed files with 3 additions and 3 deletions

View File

@@ -917,7 +917,7 @@ public:
if (tbl->col_break || i++ >= this->number_of_rows) {
/* Column break needed, continue at top, COLUMN_WIDTH pixels
* (one "row") to the right. */
x += rtl ? -this->column_width : this->column_width;
x += rtl ? -(int)this->column_width : this->column_width;
y = y_org;
i = 0;
}