Fix some warnings

This commit is contained in:
Jean-Marc Lasgouttes 2015-01-07 21:27:53 +01:00
parent a15468e260
commit 0ad9d46068

View File

@ -619,16 +619,16 @@ void TextMetrics::computeRowMetrics(pit_type const pit,
row.dimension().wid = width;
} else if (is_rtl) {
row.dimension().wid = width;
row.left_margin += w;
row.left_margin += int(w);
}
break;
}
case LYX_ALIGN_RIGHT:
row.left_margin += w;
row.left_margin += int(w);
break;
case LYX_ALIGN_CENTER:
row.dimension().wid = width - int(w / 2);
row.left_margin += w / 2;
row.left_margin += int(w / 2);
break;
case LYX_ALIGN_LEFT:
case LYX_ALIGN_NONE: