1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Make SchemeHandler destructor virtual

This commit is contained in:
nowrep 2013-08-21 20:52:49 +02:00
parent 1ebc952ae0
commit 0a3b8e4ad4

View File

@ -26,6 +26,8 @@ class QT_QUPZILLA_EXPORT SchemeHandler
{
public:
SchemeHandler() { }
virtual ~SchemeHandler() { }
virtual QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData) = 0;
};