doc tools: Stop using gtk_true

This commit is contained in:
Matthias Clasen 2017-12-31 12:17:08 -05:00
parent c4513a6737
commit f0fb705aae

View File

@ -17,6 +17,12 @@
#define LARGE_WIDTH 240
#define LARGE_HEIGHT 240
static gboolean
focus_handled (void)
{
return TRUE;
}
static WidgetInfo *
new_widget_info (const char *name,
GtkWidget *widget,
@ -42,7 +48,7 @@ new_widget_info (const char *name,
}
info->no_focus = TRUE;
g_signal_connect (info->window, "focus", G_CALLBACK (gtk_true), NULL);
g_signal_connect (info->window, "focus", G_CALLBACK (focus_handled), NULL);
switch (size)
{