diff -r f7e6b1b38a04 -r 2b86501d13fe pidgin/pidgindebug.c --- a/pidgin/pidgindebug.c Tue Mar 01 03:27:08 2022 -0600 +++ b/pidgin/pidgindebug.c Thu Mar 03 23:59:46 2022 -0600 @@ -303,7 +303,7 @@ PidginDebugWindow *win = (PidginDebugWindow *)data; const gchar *exp = (const gchar *)val; - gtk_entry_set_text(GTK_ENTRY(win->expression), exp); + gtk_editable_set_text(GTK_EDITABLE(win->expression), exp); } static void @@ -341,7 +341,7 @@ FALSE); } - text = gtk_entry_get_text(GTK_ENTRY(win->expression)); + text = gtk_editable_get_text(GTK_EDITABLE(win->expression)); purple_prefs_set_string(PIDGIN_PREFS_ROOT "/debug/regex", text); if (text == NULL || *text == '\0') { @@ -573,8 +573,8 @@ GTK_STYLE_PROVIDER(filter_css), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - gtk_entry_set_text(GTK_ENTRY(win->expression), - purple_prefs_get_string(PIDGIN_PREFS_ROOT "/debug/regex")); + gtk_editable_set_text(GTK_EDITABLE(win->expression), + purple_prefs_get_string(PIDGIN_PREFS_ROOT "/debug/regex")); purple_prefs_connect_callback(handle, PIDGIN_PREFS_ROOT "/debug/regex", regex_pref_expression_cb, win);