Changeset 46a47c0 in mainline for uspace/lib/ui/test/popup.c
- Timestamp:
- 2023-01-16T20:34:01Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b0ae23f
- Parents:
- b3eeae5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/test/popup.c
rb3eeae5 r46a47c0 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 64 64 static errno_t test_ctl_paint(void *); 65 65 static ui_evclaim_t test_ctl_pos_event(void *, pos_event_t *); 66 static void test_ctl_unfocus(void * );66 static void test_ctl_unfocus(void *, unsigned); 67 67 68 68 static ui_control_ops_t test_ctl_ops = { … … 91 91 pos_event_t pos_event; 92 92 bool unfocus; 93 unsigned unfocus_nfocus; 93 94 } test_ctl_resp_t; 94 95 … … 341 342 } 342 343 343 static void test_ctl_unfocus(void *arg )344 static void test_ctl_unfocus(void *arg, unsigned nfocus) 344 345 { 345 346 test_ctl_resp_t *resp = (test_ctl_resp_t *) arg; 346 347 347 348 resp->unfocus = true; 349 resp->unfocus_nfocus = nfocus; 348 350 } 349 351
Note:
See TracChangeset
for help on using the changeset viewer.