Skip to content
  • Lioncash's avatar
    yuzu/CMakeLists: Disable implicit QString->QUrl conversions · d7d5bffa
    Lioncash authored
    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.
    d7d5bffa
Loading