added missing Q_OBJECT-macros for views which made localizations not work

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@784 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-03-09 00:21:43 +00:00
parent 5f47f86625
commit 461c235cfe
16 changed files with 54 additions and 74 deletions

View File

@@ -105,6 +105,7 @@ private:
class bbTrack : public track
{
Q_OBJECT
public:
bbTrack( trackContainer * _tc );
virtual ~bbTrack();

View File

@@ -42,6 +42,7 @@ class chordCreator;
class chordCreatorView : public QWidget, public modelView
{
Q_OBJECT
public:
chordCreatorView( chordCreator * _cc, QWidget * _parent );
virtual ~chordCreatorView();
@@ -64,6 +65,7 @@ private:
class arpeggiatorView : public QWidget, public modelView
{
Q_OBJECT
public:
arpeggiatorView( arpeggiator * _arp, QWidget * _parent );
virtual ~arpeggiatorView();

View File

@@ -42,6 +42,7 @@ const int MAX_CHORD_POLYPHONY = 10;
class chordCreator : public model, public journallingObject
{
Q_OBJECT
public:
chordCreator( instrumentTrack * _instrument_track );
virtual ~chordCreator();
@@ -91,6 +92,7 @@ private:
class arpeggiator : public model, public journallingObject
{
Q_OBJECT
public:
enum ArpDirections
{

View File

@@ -38,6 +38,7 @@ class notePlayHandle;
class instrumentSoundShaping : public model, public journallingObject
{
Q_OBJECT
public:
instrumentSoundShaping( instrumentTrack * _instrument_track );
virtual ~instrumentSoundShaping();

View File

@@ -39,6 +39,7 @@ class tabWidget;
class instrumentSoundShapingView : public QWidget, public modelView
{
Q_OBJECT
public:
instrumentSoundShapingView( QWidget * _parent );
virtual ~instrumentSoundShapingView();

View File

@@ -35,6 +35,7 @@ class ladspaControl;
class ladspaControlView : public QWidget, public modelView
{
Q_OBJECT
public:
ladspaControlView( QWidget * _parent, ladspaControl * _ctl );
virtual ~ladspaControlView();

View File

@@ -70,9 +70,10 @@ signals:
class meterDialog : public QWidget, public modelView
{
Q_OBJECT
public:
meterDialog( QWidget * _parent );
~meterDialog();
virtual ~meterDialog();
virtual void modelChanged( void );