From 060992aeba64272214ccbaf50232e970a6fca402 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Sun, 30 Apr 2023 16:55:31 +0100 Subject: [PATCH] migrating-3to4: Fix unescaped ptr * used as italic --- docs/reference/gtk/migrating-3to4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/gtk/migrating-3to4.md b/docs/reference/gtk/migrating-3to4.md index 62f7f083da..05c99fa2ff 100644 --- a/docs/reference/gtk/migrating-3to4.md +++ b/docs/reference/gtk/migrating-3to4.md @@ -875,10 +875,10 @@ reference. ### Adapt to coordinate API changes A number of APIs that are accepting or returning coordinates have -been changed from ints to doubles: `gtk_widget_translate_coordinates()`, +been changed from `int`s to `double`s: `gtk_widget_translate_coordinates()`, `gtk_fixed_put()`, `gtk_fixed_move()`. This change is mostly transparent, except for cases where out parameters are involved: you need to -pass double* now, instead of int*. +pass `double*` now, instead of `int*`. ### Adapt to GtkStyleContext API changes -- 2.30.2