comparison libmlk-ui/mlk/ui/notify.c @ 491:734b598534c4

ui: frame -> mlk_frame
author David Demelier <markand@malikania.fr>
date Tue, 28 Feb 2023 13:16:47 +0100
parents f2d3c5a97884
children fce3b3c4b496
comparison
equal deleted inserted replaced
490:d4e50da7e5c5 491:734b598534c4
100 } 100 }
101 101
102 static void 102 static void
103 draw_frame(const struct geo *geo) 103 draw_frame(const struct geo *geo)
104 { 104 {
105 const struct frame f = { 105 const struct mlk_frame f = {
106 .x = geo->frame_x, 106 .x = geo->frame_x,
107 .y = geo->frame_y, 107 .y = geo->frame_y,
108 .w = geo->frame_w, 108 .w = geo->frame_w,
109 .h = geo->frame_h 109 .h = geo->frame_h
110 }; 110 };
111 111
112 frame_draw(&f); 112 mlk_frame_draw(&f);
113 } 113 }
114 114
115 static void 115 static void
116 draw_icon(const struct geo *geo, const struct notify *n) 116 draw_icon(const struct geo *geo, const struct notify *n)
117 { 117 {