コード例 #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);
}