Encodes an url (or string) to make it comply to RFC2396 by replacing illegal characters Some device descriptions may include a "+" that needs to be replaced (e.g. GeForce 9800 GTX+/PCI/SSE2) Url (or string) to be encoded
| 97 | /// <param name="url">Url (or string) to be encoded</param> |
| 98 | /// <returns></returns> |
| 99 | QString VulkanDatabase::encodeUrl(QString url) |
| 100 | { |
| 101 | return url.replace("+", "%2B"); |
| 102 | } |
| 103 | |
| 104 | int VulkanDatabase::getReportId(VulkanDeviceInfo device) |
| 105 | { |
nothing calls this directly
no outgoing calls
no test coverage detected