diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:19:26 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-24 17:53:28 +0900 |
commit | 3ef4ff2e0617206d44cb6e0247bb7cc8d0dd909c (patch) | |
tree | 5e34da75593d5cb3e7074242eb1972435e443639 /src/gui/editors/matrix | |
parent | 95194d38ad6a808673758ab3f60433ea153bb414 (diff) | |
download | rosegarden-3ef4ff2e0617206d44cb6e0247bb7cc8d0dd909c.tar.gz rosegarden-3ef4ff2e0617206d44cb6e0247bb7cc8d0dd909c.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c57b4dfc677121eadeff03f1f3fa330882b5b747)
Diffstat (limited to 'src/gui/editors/matrix')
-rw-r--r-- | src/gui/editors/matrix/MatrixCanvasView.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixMover.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixPainter.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixParameterBox.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixResizer.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixSelector.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixTool.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixToolBox.h | 2 | ||||
-rw-r--r-- | src/gui/editors/matrix/MatrixView.h | 6 | ||||
-rw-r--r-- | src/gui/editors/matrix/PianoKeyboard.h | 2 |
10 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/editors/matrix/MatrixCanvasView.h b/src/gui/editors/matrix/MatrixCanvasView.h index 64c3523..0de6db5 100644 --- a/src/gui/editors/matrix/MatrixCanvasView.h +++ b/src/gui/editors/matrix/MatrixCanvasView.h @@ -44,7 +44,7 @@ class MatrixElement; class MatrixCanvasView : public RosegardenCanvasView { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/gui/editors/matrix/MatrixMover.h b/src/gui/editors/matrix/MatrixMover.h index 57e6aaf..c0c74e2 100644 --- a/src/gui/editors/matrix/MatrixMover.h +++ b/src/gui/editors/matrix/MatrixMover.h @@ -43,7 +43,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 8ec8c1e..6beddc2 100644 --- a/src/gui/editors/matrix/MatrixPainter.h +++ b/src/gui/editors/matrix/MatrixPainter.h @@ -43,7 +43,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 ee79bf2..1ceb4db 100644 --- a/src/gui/editors/matrix/MatrixParameterBox.h +++ b/src/gui/editors/matrix/MatrixParameterBox.h @@ -43,7 +43,7 @@ class EventSelection; class MatrixParameterBox : public TQFrame { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/gui/editors/matrix/MatrixResizer.h b/src/gui/editors/matrix/MatrixResizer.h index b1704ec..aeebb71 100644 --- a/src/gui/editors/matrix/MatrixResizer.h +++ b/src/gui/editors/matrix/MatrixResizer.h @@ -43,7 +43,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 0267aee..7601f31 100644 --- a/src/gui/editors/matrix/MatrixSelector.h +++ b/src/gui/editors/matrix/MatrixSelector.h @@ -46,7 +46,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 04eacd4..765f994 100644 --- a/src/gui/editors/matrix/MatrixTool.h +++ b/src/gui/editors/matrix/MatrixTool.h @@ -40,7 +40,7 @@ class SnapGrid; class MatrixTool : public EditTool { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/gui/editors/matrix/MatrixToolBox.h b/src/gui/editors/matrix/MatrixToolBox.h index 4a86467..889e7ee 100644 --- a/src/gui/editors/matrix/MatrixToolBox.h +++ b/src/gui/editors/matrix/MatrixToolBox.h @@ -38,7 +38,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 cba9ced..9709c50 100644 --- a/src/gui/editors/matrix/MatrixView.h +++ b/src/gui/editors/matrix/MatrixView.h @@ -78,7 +78,7 @@ class LevelInfo; */ class MatrixView : public EditView { - Q_OBJECT + TQ_OBJECT friend class MatrixSelector; @@ -666,12 +666,12 @@ protected: }; // Commented this out - was a MatrixView inner class, but we get a warning -// that Q_OBJECT can't be used in an inner class - gl +// that TQ_OBJECT can't be used in an inner class - gl // // class NoteSender : public TQObject // { -// Q_OBJECT +// TQ_OBJECT // // public: diff --git a/src/gui/editors/matrix/PianoKeyboard.h b/src/gui/editors/matrix/PianoKeyboard.h index 9580ccf..4d7b33f 100644 --- a/src/gui/editors/matrix/PianoKeyboard.h +++ b/src/gui/editors/matrix/PianoKeyboard.h @@ -41,7 +41,7 @@ namespace Rosegarden class PianoKeyboard : public PitchRuler { - Q_OBJECT + TQ_OBJECT public: PianoKeyboard(TQWidget *parent, int keys = 88); |