Skip to content
  • Jonas Ådahl's avatar
    gmessages: Add g_warning_once() · 15e3b6f1
    Jonas Ådahl authored
    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");
    15e3b6f1