summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/matrix
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:01:45 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:01:45 -0600
commitc97367ce4f0e465de236acd5e8e59cef08ada0ce (patch)
tree52d33a19bf5ee6018572cd95ef0a32f4246df15c /src/gui/editors/matrix
parent6c5563b774ff6d926703282d34031a32d75d0c2f (diff)
downloadrosegarden-c97367ce4f0e465de236acd5e8e59cef08ada0ce.tar.gz
rosegarden-c97367ce4f0e465de236acd5e8e59cef08ada0ce.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/gui/editors/matrix')
-rw-r--r--src/gui/editors/matrix/MatrixCanvasView.h2
-rw-r--r--src/gui/editors/matrix/MatrixMover.h2
-rw-r--r--src/gui/editors/matrix/MatrixPainter.h2
-rw-r--r--src/gui/editors/matrix/MatrixParameterBox.h2
-rw-r--r--src/gui/editors/matrix/MatrixResizer.h2
-rw-r--r--src/gui/editors/matrix/MatrixSelector.h2
-rw-r--r--src/gui/editors/matrix/MatrixTool.h2
-rw-r--r--src/gui/editors/matrix/MatrixToolBox.h2
-rw-r--r--src/gui/editors/matrix/MatrixView.h4
-rw-r--r--src/gui/editors/matrix/PianoKeyboard.h2
10 files changed, 11 insertions, 11 deletions
diff --git a/src/gui/editors/matrix/MatrixCanvasView.h b/src/gui/editors/matrix/MatrixCanvasView.h
index 440e941..ccba92a 100644
--- a/src/gui/editors/matrix/MatrixCanvasView.h
+++ b/src/gui/editors/matrix/MatrixCanvasView.h
@@ -48,7 +48,7 @@ class MatrixElement;
class MatrixCanvasView : public RosegardenCanvasView
{
Q_OBJECT
- TQ_OBJECT
+
public:
MatrixCanvasView(MatrixStaff&,
diff --git a/src/gui/editors/matrix/MatrixMover.h b/src/gui/editors/matrix/MatrixMover.h
index 9886bdd..01a6c9a 100644
--- a/src/gui/editors/matrix/MatrixMover.h
+++ b/src/gui/editors/matrix/MatrixMover.h
@@ -47,7 +47,7 @@ class Event;
class MatrixMover : public MatrixTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class MatrixToolBox;
diff --git a/src/gui/editors/matrix/MatrixPainter.h b/src/gui/editors/matrix/MatrixPainter.h
index f7e8e6f..0370c44 100644
--- a/src/gui/editors/matrix/MatrixPainter.h
+++ b/src/gui/editors/matrix/MatrixPainter.h
@@ -47,7 +47,7 @@ class Event;
class MatrixPainter : public MatrixTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class MatrixToolBox;
diff --git a/src/gui/editors/matrix/MatrixParameterBox.h b/src/gui/editors/matrix/MatrixParameterBox.h
index be69899..e214630 100644
--- a/src/gui/editors/matrix/MatrixParameterBox.h
+++ b/src/gui/editors/matrix/MatrixParameterBox.h
@@ -47,7 +47,7 @@ class EventSelection;
class MatrixParameterBox : public TQFrame
{
Q_OBJECT
- TQ_OBJECT
+
public:
MatrixParameterBox(RosegardenGUIDoc *doc=0, TQWidget *parent=0, const char* name=0);
diff --git a/src/gui/editors/matrix/MatrixResizer.h b/src/gui/editors/matrix/MatrixResizer.h
index cbbf8cc..a36acb3 100644
--- a/src/gui/editors/matrix/MatrixResizer.h
+++ b/src/gui/editors/matrix/MatrixResizer.h
@@ -47,7 +47,7 @@ class Event;
class MatrixResizer : public MatrixTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class MatrixToolBox;
diff --git a/src/gui/editors/matrix/MatrixSelector.h b/src/gui/editors/matrix/MatrixSelector.h
index 1e8a741..c875898 100644
--- a/src/gui/editors/matrix/MatrixSelector.h
+++ b/src/gui/editors/matrix/MatrixSelector.h
@@ -50,7 +50,7 @@ class EditTool;
class MatrixSelector : public MatrixTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class MatrixToolBox;
diff --git a/src/gui/editors/matrix/MatrixTool.h b/src/gui/editors/matrix/MatrixTool.h
index fb45920..9596677 100644
--- a/src/gui/editors/matrix/MatrixTool.h
+++ b/src/gui/editors/matrix/MatrixTool.h
@@ -44,7 +44,7 @@ class SnapGrid;
class MatrixTool : public EditTool
{
Q_OBJECT
- TQ_OBJECT
+
public:
// virtual void ready();
diff --git a/src/gui/editors/matrix/MatrixToolBox.h b/src/gui/editors/matrix/MatrixToolBox.h
index 2f43206..07593f4 100644
--- a/src/gui/editors/matrix/MatrixToolBox.h
+++ b/src/gui/editors/matrix/MatrixToolBox.h
@@ -42,7 +42,7 @@ class MatrixStaff;
class MatrixToolBox : public EditToolBox
{
Q_OBJECT
- TQ_OBJECT
+
public:
MatrixToolBox(MatrixView* parent);
diff --git a/src/gui/editors/matrix/MatrixView.h b/src/gui/editors/matrix/MatrixView.h
index 45c43fb..bc72563 100644
--- a/src/gui/editors/matrix/MatrixView.h
+++ b/src/gui/editors/matrix/MatrixView.h
@@ -82,7 +82,7 @@ class LevelInfo;
class MatrixView : public EditView
{
Q_OBJECT
- TQ_OBJECT
+
friend class MatrixSelector;
@@ -675,7 +675,7 @@ protected:
// class NoteSender : public TQObject
// {
// Q_OBJECT
-// TQ_OBJECT
+//
// public:
// NoteSender(int i, int p) : m_insid(i), m_pitch(p) { }
diff --git a/src/gui/editors/matrix/PianoKeyboard.h b/src/gui/editors/matrix/PianoKeyboard.h
index 3d8b583..05f515b 100644
--- a/src/gui/editors/matrix/PianoKeyboard.h
+++ b/src/gui/editors/matrix/PianoKeyboard.h
@@ -45,7 +45,7 @@ namespace Rosegarden
class PianoKeyboard : public PitchRuler
{
Q_OBJECT
- TQ_OBJECT
+
public:
PianoKeyboard(TQWidget *parent, int keys = 88);