Commit d7d5bffa authored by Lioncash's avatar Lioncash
Browse files

yuzu/CMakeLists: Disable implicit QString->QUrl conversions

Enforces the use of the proper URL resolution functions. e.g.

url = some_local_path_string;

should actually be:

url = QUrl::fromLocalPath(some_local_path_string);

etc.

This makes it harder to cause bugs when operating with both strings and
URLs at the same time.
parent 5b932901
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment