Rename SCT plugin for OSS-FUZZ

To make OSS fuzz build script happy, the test folder and the cpp file must have the same name.
This commit is contained in:
Mirco Miranda 2024-11-05 12:17:52 +00:00
parent ecfbff8197
commit 2ea724c241
4 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ kimageformats_add_plugin(kimg_rgb SOURCES rgb.cpp)
##################################
kimageformats_add_plugin(kimg_sct SOURCES scitex.cpp)
kimageformats_add_plugin(kimg_sct SOURCES sct.cpp)
##################################

View File

@ -5,7 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "scitex_p.h"
#include "sct_p.h"
#include "scanlineconverter_p.h"
#include "util_p.h"

View File

@ -32,7 +32,7 @@ private:
class ScitexPlugin : public QImageIOPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "scitex.json")
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "sct.json")
public:
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;