Changeset b8b031f in mainline
- Timestamp:
- 2025-04-11T14:42:40Z (41 hours ago)
- Children:
- 465ac5e
- Parents:
- c0d814a (diff), 8165a7a (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-11 14:42:40)
- git-committer:
- GitHub <noreply@…> (2025-04-11 14:42:40)
- Location:
- uspace/app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/gfxdemo/gfxdemo.c
rc0d814a rb8b031f 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 1355 1355 } 1356 1356 1357 if (i >= argc || str_cmp(argv[i], " display") == 0) {1358 rc = demo_ display(display_svc);1357 if (i >= argc || str_cmp(argv[i], "ui") == 0) { 1358 rc = demo_ui(ui_display_spec); 1359 1359 if (rc != EOK) 1360 1360 return 1; … … 1363 1363 if (rc != EOK) 1364 1364 return 1; 1365 } else if (str_cmp(argv[i], " ui") == 0) {1366 rc = demo_ ui(ui_display_spec);1365 } else if (str_cmp(argv[i], "display") == 0) { 1366 rc = demo_display(display_svc); 1367 1367 if (rc != EOK) 1368 1368 return 1; -
uspace/app/taskbar/taskbar.sif
rc0d814a rb8b031f 15 15 <entry caption="~U~I Demo" cmd="/app/uidemo -d %d" terminal="n"> 16 16 </entry> 17 <entry caption="~G~FX Demo" cmd="/app/gfxdemo -d %d ui" terminal="n">17 <entry caption="~G~FX Demo" cmd="/app/gfxdemo -d %d" terminal="n"> 18 18 </entry> 19 19 <entry caption="~B~arber Pole" cmd="/app/barber -d %d" terminal="n">
Note:
See TracChangeset
for help on using the changeset viewer.