InfoBar: Fix wrong/uninit var use in code example

https://bugzilla.gnome.org/show_bug.cgi?id=786144
This commit is contained in:
Daniel Boles 2017-08-12 21:07:22 +01:00
parent 854bfb916c
commit a2768144f1

View File

@ -81,7 +81,7 @@
* GtkInfoBar *bar;
*
* widget = gtk_info_bar_new ();
* bar = GTK_INFO_BAR (bar);
* bar = GTK_INFO_BAR (widget);
*
* message_label = gtk_label_new ("");
* gtk_widget_show (message_label);