Skip to content

Commit

Permalink
Update cfl_group.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
MoAlyousef authored Oct 17, 2023
1 parent 3a84735 commit 73264d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cfl_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,12 @@ void Fl_Grid_set_gap(Fl_Grid *self, int row_gap, int col_gap) {
}

void *Fl_Grid_set_widget(Fl_Grid *self, Fl_Widget *wi, int row, int col, unsigned short align) {
LOCK(self->widget(wi, row, col, align));
LOCK(auto ret = self->widget(wi, row, col, align)); return ret;
}

void *Fl_Grid_set_widget_ext(Fl_Grid *self, Fl_Widget *wi, int row, int col, int rowspan,
int colspan, unsigned short align) {
LOCK(self->widget(wi, row, col, rowspan, colspan, align));
LOCK(auto ret = self->widget(wi, row, col, rowspan, colspan, align)); return ret;
}

void Fl_Grid_set_col_width(Fl_Grid *self, int col, int value) {
Expand Down

0 comments on commit 73264d5

Please sign in to comment.