doc: Adapt GtkPackType documentation to GTK4 changes

Since GTK4, the functions that used the GtkPackType enumeration,
`gtk_box_pack_{start,end}`, were replaced by `gtk_box_{append,prepend}`,
hence this enumeration isn't used anymore by any function within the
GtkBox type, and the child packing properties were also removed for GTK4.
So this commit adapts the documentation accordingly.
This commit is contained in:
vanadiae 2020-11-17 20:14:51 +01:00
parent 5cc5022a8f
commit bc4969ec42

View File

@ -343,10 +343,11 @@ typedef enum
/**
* GtkPackType:
* @GTK_PACK_START: The child is packed into the start of the box
* @GTK_PACK_END: The child is packed into the end of the box
* @GTK_PACK_START: The child is packed into the start of the widget
* @GTK_PACK_END: The child is packed into the end of the widget
*
* Represents the packing location #GtkBox children
* Represents the packing location of a children in its parent.
* See #GtkWindowControls for example.
*/
typedef enum
{