pidgin/pidgin

Parents 69256936f91a
Children f729a2939e03
Fix a warning in gtkconv where we weren't returning a value when we should have been

Testing Done:
Compiled and verified the warning was gone.

Reviewed at https://reviews.imfreedom.org/r/1403/
--- a/pidgin/gtkconv.c Thu Apr 28 04:37:33 2022 -0500
+++ b/pidgin/gtkconv.c Thu Apr 28 04:50:20 2022 -0500
@@ -4647,7 +4647,7 @@
GINT_TO_POINTER(0));
g_object_set_data(G_OBJECT(gtkconv->imhtml), "resize-count",
GINT_TO_POINTER(0));
- return;
+ return FALSE;
}
pad_top = gtk_text_view_get_pixels_above_lines(GTK_TEXT_VIEW(gtkconv->entry));
@@ -7434,7 +7434,7 @@
else
gtk_widget_hide(gtkconv->toolbar);
- g_idle_add((GSourceFunc)resize_imhtml_cb,gtkconv);
+ g_idle_add((GSourceFunc)resize_imhtml_cb, gtkconv);
g_object_set_data(G_OBJECT(gtkconv->imhtml), "resize-count",
GINT_TO_POINTER(0));