예제 #1
0
파일: xml-entry.c 프로젝트: GNOME/gconf
static void
entry_sync_if_needed(Entry* e)
{
  if (!e->dirty)
    return;
  
  if (e->cached_value &&
      e->cached_value->type == GCONF_VALUE_SCHEMA)
    {
      entry_sync_to_node(e);
    }
}
예제 #2
0
파일: xml-dir.c 프로젝트: BARGAN/gconf
static void
entry_sync_foreach(const gchar* name, Entry* e, gpointer data)
{
  entry_sync_to_node(e);
}