diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-02-20 13:10:09 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-02-20 13:10:09 -0500 |
commit | 2e9c7d074483135898c528412665cedbecc89505 (patch) | |
tree | b16700b92ab36f3618ba07620c7d1e71bbc003b6 /gtk/gtksearchentry.c | |
parent | 82bde1e10a849c5843aad54a2b983dae9cb9a99f (diff) | |
download | gtk+-2e9c7d074483135898c528412665cedbecc89505.tar.gz |
search entry: Quiet a compiler warning
Diffstat (limited to 'gtk/gtksearchentry.c')
-rw-r--r-- | gtk/gtksearchentry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtksearchentry.c b/gtk/gtksearchentry.c index e9c56c4e04..246d8126e0 100644 --- a/gtk/gtksearchentry.c +++ b/gtk/gtksearchentry.c @@ -707,5 +707,5 @@ gtk_search_entry_get_text_widget (GtkSearchEntry *entry) { GtkSearchEntryPrivate *priv = gtk_search_entry_get_instance_private (entry); - return priv->entry; + return GTK_TEXT (priv->entry); } |