Changeset 3acb63b5 in mainline for uspace/app/shutdown-dlg/shutdown-dlg.c
- Timestamp:
- 2025-04-09T20:01:05Z (6 days ago)
- Children:
- a92290d
- Parents:
- 9f945464 (diff), a188131 (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:
- Wayne Thornton <wmthornton-dev@…> (2025-04-09 20:01:05)
- git-committer:
- GitHub <noreply@…> (2025-04-09 20:01:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/shutdown-dlg/shutdown-dlg.c
r9f945464 r3acb63b5 238 238 * 239 239 * @param dialog Message dialog 240 * @param arg Argument ( ui_demo_t *)240 * @param arg Argument (shutdown_dlg_t *) 241 241 * @param earg Entry argument 242 242 */ … … 254 254 * 255 255 * @param dialog Message dialog 256 * @param arg Argument ( ui_demo_t *)256 * @param arg Argument (shutdown_dlg_t *) 257 257 */ 258 258 static void shutdown_confirm_bcancel(ui_select_dialog_t *dialog, void *arg) … … 267 267 * 268 268 * @param dialog Message dialog 269 * @param arg Argument ( ui_demo_t *)269 * @param arg Argument (shutdown_dlg_t *) 270 270 */ 271 271 static void shutdown_confirm_close(ui_select_dialog_t *dialog, void *arg) … … 280 280 * 281 281 * @param dialog Message dialog 282 * @param arg Argument ( ui_demo_t *)282 * @param arg Argument (shutdown_dlg_t *) 283 283 * @param bnum Button number 284 284 */ … … 295 295 * 296 296 * @param dialog Message dialog 297 * @param arg Argument ( ui_demo_t *)297 * @param arg Argument (shutdown_dlg_t *) 298 298 */ 299 299 static void shutdown_failed_msg_close(ui_msg_dialog_t *dialog, void *arg) … … 480 480 481 481 ui_wnd_params_init(¶ms); 482 params.caption = "Shut down background";482 params.caption = "Shutdown"; 483 483 params.style &= ~ui_wds_decorated; 484 484 params.placement = ui_wnd_place_full_screen; 485 485 params.flags |= ui_wndf_topmost | ui_wndf_nofocus; 486 /*487 * params.rect.p0.x = 0;488 * params.rect.p0.y = 0;489 * params.rect.p1.x = 1;490 * params.rect.p1.y = 1;491 */492 486 493 487 rc = ui_window_create(sddlg.ui, ¶ms, &sddlg.bgwindow);
Note:
See TracChangeset
for help on using the changeset viewer.