From 12a69b29fa27cd17ca67b422cdbb9adef4ff5554 Mon Sep 17 00:00:00 2001 From: Joe Huss Date: Sat, 30 Jul 2022 02:54:22 -0400 Subject: [PATCH] fixing const declaration in Platform::getDefaultScraper --- src/platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform.cpp b/src/platform.cpp index fb41be7e..0f048d04 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -132,7 +132,7 @@ QString Platform::getFormats(QString platform, QString extensions, QString addEx } // If user provides no scraping source with '-s' this sets the default for the platform -QString Platform::getDefaultScraper() +QString Platform::getDefaultScraper() const { return "cache"; }