Apply 4 suggestion(s) to 2 file(s)

This commit is contained in:
Matthias Clasen 2023-02-12 16:41:08 +00:00 committed by Alexandros Theodotou
parent 87d21dc5c9
commit 83c5f5ff0f
No known key found for this signature in database
GPG Key ID: 022EAE42313D70F3
2 changed files with 4 additions and 4 deletions

View File

@ -840,7 +840,7 @@ gtk_search_entry_get_key_controller (GtkSearchEntry *entry)
*
* Returns: (nullable): The placeholder text.
*
* Since: 4.8
* Since: 4.10
*/
const char *
gtk_search_entry_get_placeholder_text (GtkSearchEntry *entry)
@ -857,7 +857,7 @@ gtk_search_entry_get_placeholder_text (GtkSearchEntry *entry)
*
* Sets the placeholder text associated with @entry.
*
* Since: 4.8
* Since: 4.10
*/
void
gtk_search_entry_set_placeholder_text (GtkSearchEntry *entry,

View File

@ -60,10 +60,10 @@ void gtk_search_entry_set_search_delay (GtkSearchEntry *entry,
GDK_AVAILABLE_IN_4_8
guint gtk_search_entry_get_search_delay (GtkSearchEntry *entry);
GDK_AVAILABLE_IN_4_6
GDK_AVAILABLE_IN_4_10
void gtk_search_entry_set_placeholder_text (GtkSearchEntry *entry,
const char *text);
GDK_AVAILABLE_IN_4_6
GDK_AVAILABLE_IN_4_10
const char * gtk_search_entry_get_placeholder_text (GtkSearchEntry *entry);
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkSearchEntry, g_object_unref)