all: rename nm_utils_strdict_*() to nm_strdict_*()

This commit is contained in:
Thomas Haller
2021-07-30 09:15:38 +02:00
parent 3587cbd827
commit 593cb57eb6
20 changed files with 35 additions and 39 deletions

View File

@@ -527,7 +527,7 @@ _nm_ip_address_get_attribute_names(const NMIPAddress *address, gboolean sorted,
{
nm_assert(address);
return nm_utils_strdict_get_keys(address->attributes, sorted, out_length);
return nm_strdict_get_keys(address->attributes, sorted, out_length);
}
/**
@@ -1134,7 +1134,7 @@ _nm_ip_route_get_attribute_names(const NMIPRoute *route, gboolean sorted, guint
{
nm_assert(route);
return nm_utils_strdict_get_keys(route->attributes, sorted, out_length);
return nm_strdict_get_keys(route->attributes, sorted, out_length);
}
/**