Changeset 8a9a41e in mainline for uspace/lib/ui/src/msgdialog.c
- Timestamp:
- 2021-10-24T08:28:43Z (4 years ago)
- Children:
- 9ea3a41
- Parents:
- 2ce943a (diff), cd981f2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Erik Kučák <35500848+Riko196@…> (2021-10-24 08:28:43)
- git-committer:
- GitHub <noreply@…> (2021-10-24 08:28:43)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/msgdialog.c
r2ce943a r8a9a41e 103 103 wparams.rect.p0.x = 0; 104 104 wparams.rect.p0.y = 0; 105 wparams.rect.p1.x = 20;105 wparams.rect.p1.x = 40; 106 106 wparams.rect.p1.y = 7; 107 107 } else { … … 177 177 goto error; 178 178 179 dialog->bok = bok; 179 180 bok = NULL; 180 181 … … 187 188 188 189 dialog->window = window; 189 dialog->bok = bok;190 190 *rdialog = dialog; 191 191 return EOK; 192 192 error: 193 if (bok != NULL) 194 ui_pbutton_destroy(bok); 193 195 if (label != NULL) 194 196 ui_label_destroy(label);
Note:
See TracChangeset
for help on using the changeset viewer.