From: Michael Rasmussen Date: Fri, 30 Mar 2018 09:47:56 +0000 (+0200) Subject: Fix broken build using GTK3 X-Git-Tag: 3.17.0~164 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=d9dab228c06ce2b968ecee7dcccd4d2cc494935c Fix broken build using GTK3 Signed-off-by: Michael Rasmussen --- diff --git a/src/addrgather.c b/src/addrgather.c index 92da1a6cd..d2e28c83c 100644 --- a/src/addrgather.c +++ b/src/addrgather.c @@ -180,7 +180,7 @@ static gboolean addrgather_dlg_harvest() { g_free( name ); return FALSE; #else - name = gtk_combo_box_get_active_text(GTK_COMBO_BOX(addrgather_dlg.entryBook)); + name = gtk_editable_get_chars( GTK_EDITABLE(addrgather_dlg.entryBook), 0, -1 ); if( name == NULL || strlen( name ) < 1 ) { addrgather_dlg_status_show( _("No available address book."));