From: Daniel Boles Date: Sun, 30 Apr 2023 15:55:31 +0000 (+0100) Subject: migrating-3to4: Fix unescaped ptr * used as italic X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~330 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=060992aeba64272214ccbaf50232e970a6fca402;p=gtk4.git migrating-3to4: Fix unescaped ptr * used as italic --- 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