diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-03-26 07:30:33 -0400 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-03-26 07:30:33 -0400 |
| commit | 01819ddc241ed2d346d248ad384a12c52c3011aa (patch) | |
| tree | dc00df68f68b60436ecf2b1e396268209d30f68b /sigencore/plugins/CanvasPlugin.cpp | |
| parent | 95e1988336bf273f8237e0301d0a8ff33d901a1b (diff) | |
| download | sigen-01819ddc241ed2d346d248ad384a12c52c3011aa.tar.gz sigen-01819ddc241ed2d346d248ad384a12c52c3011aa.tar.xz sigen-01819ddc241ed2d346d248ad384a12c52c3011aa.zip | |
Fix the inheritance for plugins
Diffstat (limited to 'sigencore/plugins/CanvasPlugin.cpp')
| -rw-r--r-- | sigencore/plugins/CanvasPlugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sigencore/plugins/CanvasPlugin.cpp b/sigencore/plugins/CanvasPlugin.cpp index 00758319..3671151c 100644 --- a/sigencore/plugins/CanvasPlugin.cpp +++ b/sigencore/plugins/CanvasPlugin.cpp @@ -30,7 +30,7 @@ using namespace Sigencore; using namespace Sigencore::Plugins; CanvasPlugin::CanvasPlugin(QObject* parent, const QVariantList& args) : - QObject(parent), + PluginBase(parent, args), d(new Private(this, args)) { } |
