diff options
Diffstat (limited to 'src/filehandler.cpp')
| -rw-r--r-- | src/filehandler.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/filehandler.cpp b/src/filehandler.cpp index a8e2e24..d26cd57 100644 --- a/src/filehandler.cpp +++ b/src/filehandler.cpp @@ -14,8 +14,10 @@ bool FileHandler::supportsScheme(const QString &scheme) const return (scheme == "file"); } -bool FileHandler::startRequest(const QUrl &url) +bool FileHandler::startRequest(const QUrl &url, RequestOptions options) { + Q_UNUSED(options) + QFile file { url.path() }; if (file.open(QFile::ReadOnly)) |
