All pastes #2106047 Raw Edit

vala out argument question

public text v1 · immutable
#2106047 ·published 2012-01-25 14:10 UTC
rendered paste body
    public override void get_size(Gtk.Widget widget, Gdk.Rectangle? cell_area,
                                   out int x_offset, out int y_offset,
                                   out int width, out int height) {
        x_offset = 0;
        y_offset = 0;
        width = this.MIN_CELL_WIDTH;
        height = this.MIN_CELL_HEIGHT;
    }