debug_print("pixmap fillRect [%d, %d, %d, %d] with color %s and painter_type=%d\n", x, y, pdata->width, pdata->height, painter->brush().color().name().toAscii().data(), painter_type);
painter->fillRect(x, y, pdata->width, pdata->height, painter->brush());
debug_print("pixmap fillRect [%d, %d, %d, %d] with color %s and painter_type=%d using mask\n", x, y, pdata->width, pdata->height, painter->brush().color().name().toAscii().data(), painter_type);
painter->fillRect(x, y, pdata->width, pdata->height, painter->brush());
delete painter;
...
...
@@ -1436,17 +1470,17 @@ int FlowDrawQt::pixmap_inverse(FlowCtx *ctx, int x, int y,
//debug_print("pixmap_inverse fillRect [%d, %d, %d, %d] with color %s\n", x, y, pdata->width, pdata->height, painter->brush().color().name().toAscii().data());
painter->fillRect(x, y, pdata->width, pdata->height, painter->brush());
//debug_print("pixmap_inverse fillRect [%d, %d, %d, %d] with color %s using mask\n", x, y, pdata->width, pdata->height, painter->brush().color().name().toAscii().data());
painter->fillRect(x, y, pdata->width, pdata->height, painter->brush());
delete painter;
...
...
@@ -1462,6 +1496,7 @@ int FlowDrawQt::pixmap_erase(FlowCtx *ctx, int x, int y,