diff --git a/kimgio/ico.cpp b/kimgio/ico.cpp index d72f184a..30484bab 100644 --- a/kimgio/ico.cpp +++ b/kimgio/ico.cpp @@ -83,10 +83,6 @@ ICOHandler::ICOHandler() { } -ICOHandler::~ICOHandler() -{ -} - bool ICOHandler::canRead() const { if (ICOHandler::canRead(device())) { diff --git a/kimgio/ico.h b/kimgio/ico.h index 0bb20f41..90ad76a8 100644 --- a/kimgio/ico.h +++ b/kimgio/ico.h @@ -26,7 +26,6 @@ class ICOHandler : public QImageIOHandler { public: ICOHandler(); - ~ICOHandler(); bool canRead() const final; bool read(QImage *image) final; diff --git a/kimgio/jp2.cpp b/kimgio/jp2.cpp index 820aa44b..91e3ad80 100644 --- a/kimgio/jp2.cpp +++ b/kimgio/jp2.cpp @@ -106,10 +106,6 @@ JP2Handler::JP2Handler() { } -JP2Handler::~JP2Handler() -{ -} - bool JP2Handler::canRead() const { if (JP2Handler::canRead(device())) { diff --git a/kimgio/jp2.h b/kimgio/jp2.h index 8c9949e2..1f79cdf4 100644 --- a/kimgio/jp2.h +++ b/kimgio/jp2.h @@ -26,7 +26,6 @@ class JP2Handler : public QImageIOHandler { public: JP2Handler(); - ~JP2Handler(); bool canRead() const final; bool read(QImage *image) final; diff --git a/kimgio/jpg.cpp b/kimgio/jpg.cpp index bb8dd040..6f53a442 100644 --- a/kimgio/jpg.cpp +++ b/kimgio/jpg.cpp @@ -57,10 +57,6 @@ JPGHandler::JPGHandler() { } -JPGHandler::~JPGHandler() -{ -} - bool JPGHandler::canRead() const { if (canRead(device())) { diff --git a/kimgio/jpg.h b/kimgio/jpg.h index 2b6bfe95..740b1a4f 100644 --- a/kimgio/jpg.h +++ b/kimgio/jpg.h @@ -26,7 +26,6 @@ class JPGHandler : public QImageIOHandler { public: JPGHandler(); - ~JPGHandler(); bool canRead() const final; bool read(QImage *image) final; diff --git a/kimgio/raw.cpp b/kimgio/raw.cpp index c7772477..19388c07 100644 --- a/kimgio/raw.cpp +++ b/kimgio/raw.cpp @@ -164,10 +164,6 @@ RAWHandler::RAWHandler() { } -RAWHandler::~RAWHandler() -{ -} - bool RAWHandler::canRead() const { if (RAWHandler::canRead(device())) { diff --git a/kimgio/tiff.cpp b/kimgio/tiff.cpp index 28fe6861..8a3f5529 100644 --- a/kimgio/tiff.cpp +++ b/kimgio/tiff.cpp @@ -138,10 +138,6 @@ TIFFHandler::TIFFHandler() { } -TIFFHandler::~TIFFHandler() -{ -} - bool TIFFHandler::canRead() const { if (TIFFHandler::canRead(device())) { diff --git a/kimgio/tiff.h b/kimgio/tiff.h index 22ad3d2d..fefb252f 100644 --- a/kimgio/tiff.h +++ b/kimgio/tiff.h @@ -26,7 +26,6 @@ class TIFFHandler : public QImageIOHandler { public: TIFFHandler(); - ~TIFFHandler(); bool canRead() const final; bool read(QImage *image) final;