diff libmlk-ui/mlk/ui/gridmenu.c @ 473:02b16dd49b54

core: trace -> mlk_trace
author David Demelier <markand@malikania.fr>
date Mon, 27 Feb 2023 11:26:23 +0100
parents c4f31658104d
children 734b598534c4
line wrap: on
line diff
--- a/libmlk-ui/mlk/ui/gridmenu.c	Mon Feb 27 11:24:38 2023 +0100
+++ b/libmlk-ui/mlk/ui/gridmenu.c	Mon Feb 27 11:26:23 2023 +0100
@@ -82,7 +82,7 @@
 	 * is outside of the elements.
 	 */
 	if (reqw > menu->w) {
-		tracef("gridmenu width is too small: %u < %u", menu->w, reqw);
+		mlk_tracef("gridmenu width is too small: %u < %u", menu->w, reqw);
 		menu->spacew = 1;
 	} else if (menu->ncols > 1) {
 		reqw -= theme->padding * 2;
@@ -90,7 +90,7 @@
 	}
 
 	if (reqh > menu->h) {
-		tracef("gridmenu height is too small: %u < %u", menu->h, reqh);
+		mlk_tracef("gridmenu height is too small: %u < %u", menu->h, reqh);
 		menu->spaceh = 1;
 	} else if (menu->nrows > 1) {
 		reqh -= theme->padding * 2;