Skip to content

Commit

Permalink
Add missing Q_OBJECT macros
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-w committed Mar 3, 2016
1 parent ec6734b commit 12e7262
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/DetuningHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

class DetuningHelper : public InlineAutomation
{
Q_OBJECT
MM_OPERATORS
public:
DetuningHelper() :
Expand Down
1 change: 1 addition & 0 deletions include/DummyEffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class DummyEffectControls : public EffectControls

class DummyEffect : public Effect
{
Q_OBJECT
public:
DummyEffect( Model * _parent, const QDomElement& originalPluginData ) :
Effect( NULL, _parent, NULL ),
Expand Down
1 change: 1 addition & 0 deletions plugins/Flanger/FlangerControlsDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class FlangerControls;

class FlangerControlsDialog : public EffectControlDialog
{
Q_OBJECT
public:
FlangerControlsDialog( FlangerControls* controls );
virtual ~FlangerControlsDialog()
Expand Down

3 comments on commit 12e7262

@tresf
Copy link
Member

@tresf tresf commented on 12e7262 Mar 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lukas-w I'm sure you've received the travis notifications, but this commit is breaking Mac and Win builds.

@lukas-w
Copy link
Member Author

@lukas-w lukas-w commented on 12e7262 Mar 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed via 988b788

@tresf
Copy link
Member

@tresf tresf commented on 12e7262 Mar 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.