| 247 | } |
| 248 | |
| 249 | static gboolean |
| 250 | preset_is_folder(hb_preset_index_t *path) |
| 251 | { |
| 252 | GhbValue *dict; |
| 253 | gboolean folder = FALSE; |
| 254 | |
| 255 | dict = hb_preset_get(path); |
| 256 | if (dict) |
| 257 | { |
| 258 | folder = ghb_dict_get_bool(dict, "Folder"); |
| 259 | } |
| 260 | return folder; |
| 261 | } |
| 262 | |
| 263 | static gboolean |
| 264 | preset_is_default (hb_preset_index_t *path) |
no test coverage detected