1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:58:10 +00:00

Userland: Port lists of mime types to String

This commit is contained in:
Karol Kosek 2023-08-23 14:41:26 +02:00 committed by Sam Atkins
parent e75d694974
commit 9ce2682ce6
15 changed files with 18 additions and 26 deletions

View file

@ -49,7 +49,7 @@ void SortingProxyModel::model_did_update(unsigned flags)
update_sort(flags);
}
bool SortingProxyModel::accepts_drag(ModelIndex const& proxy_index, Vector<DeprecatedString> const& mime_types) const
bool SortingProxyModel::accepts_drag(ModelIndex const& proxy_index, Vector<String> const& mime_types) const
{
return source().accepts_drag(map_to_source(proxy_index), mime_types);
}