droptarget: Fix GType in doc strings

While we have several `GType`s the actual type name is still singular.
This commit is contained in:
Guido Günther 2024-01-20 09:36:28 +01:00
parent 60b3e5cac1
commit 2bc38e103d

View File

@ -75,7 +75,7 @@
* *
* // This widget accepts two types of drop types: GFile objects * // This widget accepts two types of drop types: GFile objects
* // and GdkPixbuf objects * // and GdkPixbuf objects
* gtk_drop_target_set_gtypes (target, (GTypes [2]) { * gtk_drop_target_set_gtypes (target, (GType [2]) {
* G_TYPE_FILE, * G_TYPE_FILE,
* GDK_TYPE_PIXBUF, * GDK_TYPE_PIXBUF,
* }, 2); * }, 2);
@ -935,7 +935,7 @@ gtk_drop_target_get_formats (GtkDropTarget *self)
* that can be dropped on the target * that can be dropped on the target
* @n_types: number of @types * @n_types: number of @types
* *
* Sets the supported `GTypes` for this drop target. * Sets the supported `GType`s for this drop target.
*/ */
void void
gtk_drop_target_set_gtypes (GtkDropTarget *self, gtk_drop_target_set_gtypes (GtkDropTarget *self,