MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / store_prefs

Function store_prefs

gtk/src/presets.c:1961–1975  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1959}
1960
1961static void
1962store_prefs(void)
1963{
1964 if (prefs_timeout_id != 0)
1965 {
1966 GMainContext *mc;
1967 GSource *source;
1968
1969 mc = g_main_context_default();
1970 source = g_main_context_find_source_by_id(mc, prefs_timeout_id);
1971 if (source != NULL)
1972 g_source_destroy(source);
1973 }
1974 prefs_timeout_id = g_timeout_add(100, (GSourceFunc)delayed_store_prefs, NULL);
1975}
1976
1977void
1978ghb_presets_load(signal_user_data_t *ud)

Callers 3

ghb_pref_saveFunction · 0.85
ghb_prefs_storeFunction · 0.85
ghb_prefs_loadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected