| 142 | } |
| 143 | |
| 144 | void |
| 145 | ghb_dict_set_string(GhbValue *dict, const gchar *key, const gchar *sval) |
| 146 | { |
| 147 | GhbValue *value; |
| 148 | value = ghb_string_value_new(sval); |
| 149 | ghb_dict_set(dict, key, value); |
| 150 | } |
| 151 | |
| 152 | void |
| 153 | ghb_dict_set_double(GhbValue *dict, const gchar *key, gdouble dval) |
no outgoing calls
no test coverage detected