| 790 | } |
| 791 | |
| 792 | static void |
| 793 | write_config_file(const gchar *name, GhbValue *dict) |
| 794 | { |
| 795 | gchar *config, *path; |
| 796 | |
| 797 | config = ghb_get_user_config_dir(NULL); |
| 798 | path = g_strdup_printf ("%s/%s", config, name); |
| 799 | g_free(config); |
| 800 | ghb_json_write_file(path, dict); |
| 801 | g_free(path); |
| 802 | } |
| 803 | |
| 804 | void |
| 805 | ghb_write_settings_file(const gchar *path, GhbValue *dict) |
no test coverage detected