glib/docs/reference
Jonas Ådahl 15e3b6f136 gmessages: Add g_warning_once()
In many places the pattern

    static gboolean warned_once = FALSE;
    if (!warned_once)
      {
        g_warning ("This and that");
        warned_once = TRUE;
      }

is used to not spam the same warning message over and over again. Add a
helper in glib for this, allowing the above statement to be changed to

    g_warning_once ("This and that");
2019-10-09 16:39:31 +02:00
..
gio Merge branch 'wip/tingping/pkcs11' into 'master' 2019-10-03 12:12:16 +00:00
glib gmessages: Add g_warning_once() 2019-10-09 16:39:31 +02:00
gobject docs: Remove priv pointers from the tutorial example 2019-09-20 11:38:47 +02:00
.gitignore .gitignore manpages (*.1) 2010-05-24 23:21:01 -04:00
AUTHORS Initial revision 1999-08-16 17:58:30 +00:00
COPYING Initial revision 1999-08-16 17:58:30 +00:00
meson.build gversionmacros: Add version macros for GLib 2.64 2019-09-17 12:24:16 +01:00
NEWS Initial revision 1999-08-16 17:58:30 +00:00