Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2020-02-05 15:04:52 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-12-15 12:59:06 +0300
commit7fd4a280f017951680b011a119e284b2625db1b8 (patch)
tree245291f0c2b7356a53fc23de5a97d7fa31339363 /src/common
parent1c10fceacccd57a7912d44c5b3e626aa9d36c30f (diff)
Make PluginFactory virtual to silent -Wnon-virtual-dtor warning
This is not necessary, but it also shouldn't hurt.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/plugin.h b/src/common/plugin.h
index df17ccc5c..3d28f7dd3 100644
--- a/src/common/plugin.h
+++ b/src/common/plugin.h
@@ -26,7 +26,7 @@ namespace OCC {
class OCSYNC_EXPORT PluginFactory
{
public:
- ~PluginFactory();
+ virtual ~PluginFactory();
virtual QObject* create(QObject* parent) = 0;
};