diff options
author | Florian Müllner <fmuellner@gnome.org> | 2020-09-25 22:54:52 +0200 |
---|---|---|
committer | Florian Müllner <fmuellner@gnome.org> | 2020-09-26 02:16:57 +0200 |
commit | e4d4b50d6de6324f5566cad9061ac7470fa64125 (patch) | |
tree | d326927bc02fc847bcda5038f15eef419974189e | |
parent | 2715b3ec31256ee1c3e0276fdc0154cd8a69fa8e (diff) | |
download | gtk+-e4d4b50d6de6324f5566cad9061ac7470fa64125.tar.gz |
docs: Document GtkBuildable changes in migration guide
https://gitlab.gnome.org/GNOME/gtk/-/issues/3191
-rw-r--r-- | docs/reference/gtk/migrating-3to4.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/reference/gtk/migrating-3to4.md b/docs/reference/gtk/migrating-3to4.md index 59800003b5..bae17df96f 100644 --- a/docs/reference/gtk/migrating-3to4.md +++ b/docs/reference/gtk/migrating-3to4.md @@ -1041,6 +1041,13 @@ You can replace calls to gtk_dialog_run() by specifying that the %GTK_DIALOG_MODAL flag, and connecting to the #GtkDialog::response signal. +### Stop using GtkBuildable API + +All the GtkBuildable API was made private, except for the +getter function to retrieve the buildable ID. If you are +using gtk_buildable_get_name() you should replace it with +gtk_buildable_get_buildable_id(). + ## Changes to consider after the switch GTK 4 has a number of new features that you may want to take |