Make PluginFactory virtual to silent -Wnon-virtual-dtor warning

This is not necessary, but it also shouldn't hurt.
This commit is contained in:
Olivier Goffart 2020-02-05 13:04:52 +01:00 committed by Kevin Ottens
parent 1c10fceacc
commit 7fd4a280f0
No known key found for this signature in database
GPG key ID: 074BBBCB8DECC9E2

View file

@ -26,7 +26,7 @@ namespace OCC {
class OCSYNC_EXPORT PluginFactory
{
public:
~PluginFactory();
virtual ~PluginFactory();
virtual QObject* create(QObject* parent) = 0;
};