Changes in uspace/app/vdemo/vdemo.c [2c7fdaa:10cb47e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vdemo/vdemo.c
r2c7fdaa r10cb47e 85 85 lbl->confirm = on_confirm; 86 86 lbl->cancel = on_cancel; 87 bool initialized = init_label( 88 &lbl->label, parent, caption,points, background, foreground);87 bool initialized = init_label(&lbl->label, parent, NULL, caption, 88 points, background, foreground); 89 89 lbl->label.widget.destroy = my_label_destroy; 90 90 return initialized; … … 110 110 { 111 111 if (argc >= 2) { 112 window_t *main_window = window_open(argv[1], 112 window_t *main_window = window_open(argv[1], NULL, 113 113 WINDOW_MAIN | WINDOW_DECORATED | WINDOW_RESIZEABLE, "vdemo"); 114 114 if (!main_window) { … … 128 128 my_label_t *lbl_action = create_my_label(NULL, "Hello there!", 16, 129 129 lbl_bg, lbl_text); 130 button_t *btn_confirm = create_button(NULL, "Confirm", 16, btn_bg, 131 btn_fg, btn_text); 132 button_t *btn_cancel = create_button(NULL, "Cancel", 16, btn_bg, 133 btn_fg, btn_text); 134 grid_t *grid = create_grid(window_root(main_window), 2, 2, grd_bg); 130 button_t *btn_confirm = create_button(NULL, NULL, "Confirm", 16, 131 btn_bg, btn_fg, btn_text); 132 button_t *btn_cancel = create_button(NULL, NULL, "Cancel", 16, 133 btn_bg, btn_fg, btn_text); 134 grid_t *grid = create_grid(window_root(main_window), NULL, 2, 2, 135 grd_bg); 135 136 if (!lbl_action || !btn_confirm || !btn_cancel || !grid) { 136 137 window_close(main_window);
Note:
See TracChangeset
for help on using the changeset viewer.