Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment