gtkmain: Fix code example

gtk_init doesn't take parameters anymore
This commit is contained in:
Timm Bäder 2017-04-25 15:22:52 +02:00
parent 29f7bde023
commit 6b12e3948e

View File

@ -64,7 +64,7 @@
* ...
*
* // Initialize the widget set
* gtk_init (&argc, &argv);
* gtk_init ();
*
* // Create the main window
* mainwin = gtk_window_new (GTK_WINDOW_TOPLEVEL);