Changeset 552b69f in mainline for uspace/app
- Timestamp:
- 2021-11-03T20:56:59Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1aa8c86
- Parents:
- ec8a1bf
- Location:
- uspace/app
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/calculator/calculator.c
rec8a1bf r552b69f 787 787 int main(int argc, char *argv[]) 788 788 { 789 const char *display_spec = UI_ DISPLAY_DEFAULT;789 const char *display_spec = UI_ANY_DEFAULT; 790 790 ui_t *ui; 791 791 ui_resource_t *ui_res; -
uspace/app/hello/hello.c
rec8a1bf r552b69f 152 152 int main(int argc, char *argv[]) 153 153 { 154 const char *display_spec = UI_ DISPLAY_DEFAULT;154 const char *display_spec = UI_ANY_DEFAULT; 155 155 errno_t rc; 156 156 int i; -
uspace/app/launcher/launcher.c
rec8a1bf r552b69f 56 56 #define NAME "launcher" 57 57 58 static c har *display_spec = UI_DISPLAY_DEFAULT;58 static const char *display_spec = UI_DISPLAY_DEFAULT; 59 59 60 60 static void wnd_close(ui_window_t *, void *); … … 137 137 *argp++ = app; 138 138 139 if ( display_spec != UI_DISPLAY_DEFAULT) {139 if (str_cmp(display_spec, UI_DISPLAY_DEFAULT) != 0) { 140 140 *argp++ = "-d"; 141 141 *argp++ = display_spec; -
uspace/app/uidemo/uidemo.c
rec8a1bf r552b69f 1019 1019 int main(int argc, char *argv[]) 1020 1020 { 1021 const char *display_spec = UI_ DISPLAY_DEFAULT;1021 const char *display_spec = UI_ANY_DEFAULT; 1022 1022 errno_t rc; 1023 1023 int i;
Note:
See TracChangeset
for help on using the changeset viewer.