summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-02-17 16:01:45 -0600
committerTimothy Pearson <[email protected]>2012-02-17 16:01:45 -0600
commitc97367ce4f0e465de236acd5e8e59cef08ada0ce (patch)
tree52d33a19bf5ee6018572cd95ef0a32f4246df15c /src/gui/editors/notation
parent6c5563b774ff6d926703282d34031a32d75d0c2f (diff)
downloadrosegarden-c97367ce4f0e465de236acd5e8e59cef08ada0ce.tar.gz
rosegarden-c97367ce4f0e465de236acd5e8e59cef08ada0ce.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/gui/editors/notation')
-rw-r--r--src/gui/editors/notation/ClefInserter.h2
-rw-r--r--src/gui/editors/notation/FontViewFrame.h2
-rw-r--r--src/gui/editors/notation/GuitarChordInserter.h2
-rw-r--r--src/gui/editors/notation/HeadersGroup.h2
-rw-r--r--src/gui/editors/notation/NotationCanvasView.h2
-rw-r--r--src/gui/editors/notation/NotationEraser.h2
-rw-r--r--src/gui/editors/notation/NotationSelector.h2
-rw-r--r--src/gui/editors/notation/NotationToolBox.h2
-rw-r--r--src/gui/editors/notation/NotationView.h2
-rw-r--r--src/gui/editors/notation/NoteFontViewer.h2
-rw-r--r--src/gui/editors/notation/NoteInserter.h2
-rw-r--r--src/gui/editors/notation/RestInserter.h2
-rw-r--r--src/gui/editors/notation/TextInserter.h2
-rw-r--r--src/gui/editors/notation/TrackHeader.h2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/editors/notation/ClefInserter.h b/src/gui/editors/notation/ClefInserter.h
index adab546..5571947 100644
--- a/src/gui/editors/notation/ClefInserter.h
+++ b/src/gui/editors/notation/ClefInserter.h
@@ -48,7 +48,7 @@ class NotationView;
class ClefInserter : public NotationTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/FontViewFrame.h b/src/gui/editors/notation/FontViewFrame.h
index 1d649c4..c285da5 100644
--- a/src/gui/editors/notation/FontViewFrame.h
+++ b/src/gui/editors/notation/FontViewFrame.h
@@ -43,7 +43,7 @@ namespace Rosegarden
class FontViewFrame : public TQFrame
{
Q_OBJECT
- TQ_OBJECT
+
public:
FontViewFrame(int pixelSize, TQWidget *parent = 0, const char *name = 0);
diff --git a/src/gui/editors/notation/GuitarChordInserter.h b/src/gui/editors/notation/GuitarChordInserter.h
index 166f179..41bc185 100644
--- a/src/gui/editors/notation/GuitarChordInserter.h
+++ b/src/gui/editors/notation/GuitarChordInserter.h
@@ -48,7 +48,7 @@ class GuitarChordSelectorDialog;
class GuitarChordInserter : public NotationTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/HeadersGroup.h b/src/gui/editors/notation/HeadersGroup.h
index a3fb706..19001f2 100644
--- a/src/gui/editors/notation/HeadersGroup.h
+++ b/src/gui/editors/notation/HeadersGroup.h
@@ -54,7 +54,7 @@ class TrackHeader;
class HeadersGroup : public TQVBox
{
Q_OBJECT
- TQ_OBJECT
+
public:
/**
* Create an empty headers group
diff --git a/src/gui/editors/notation/NotationCanvasView.h b/src/gui/editors/notation/NotationCanvasView.h
index 01f19b2..b06f206 100644
--- a/src/gui/editors/notation/NotationCanvasView.h
+++ b/src/gui/editors/notation/NotationCanvasView.h
@@ -66,7 +66,7 @@ class LinedStaffManager;
class NotationCanvasView : public RosegardenCanvasView
{
Q_OBJECT
- TQ_OBJECT
+
public:
NotationCanvasView(const LinedStaffManager &staffmgr,
diff --git a/src/gui/editors/notation/NotationEraser.h b/src/gui/editors/notation/NotationEraser.h
index d87f21f..357fa34 100644
--- a/src/gui/editors/notation/NotationEraser.h
+++ b/src/gui/editors/notation/NotationEraser.h
@@ -47,7 +47,7 @@ class NotationView;
class NotationEraser : public NotationTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/NotationSelector.h b/src/gui/editors/notation/NotationSelector.h
index 85ab92a..8768566 100644
--- a/src/gui/editors/notation/NotationSelector.h
+++ b/src/gui/editors/notation/NotationSelector.h
@@ -54,7 +54,7 @@ class Event;
class NotationSelector : public NotationTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/NotationToolBox.h b/src/gui/editors/notation/NotationToolBox.h
index 06ef576..8689541 100644
--- a/src/gui/editors/notation/NotationToolBox.h
+++ b/src/gui/editors/notation/NotationToolBox.h
@@ -47,7 +47,7 @@ class EditTool;
class NotationToolBox : public EditToolBox
{
Q_OBJECT
- TQ_OBJECT
+
public:
NotationToolBox(NotationView* parent);
diff --git a/src/gui/editors/notation/NotationView.h b/src/gui/editors/notation/NotationView.h
index ac8f58c..861a523 100644
--- a/src/gui/editors/notation/NotationView.h
+++ b/src/gui/editors/notation/NotationView.h
@@ -109,7 +109,7 @@ class NotationView : public EditView,
friend class LilyPondExporter;
Q_OBJECT
- TQ_OBJECT
+
public:
explicit NotationView(RosegardenGUIDoc *doc,
diff --git a/src/gui/editors/notation/NoteFontViewer.h b/src/gui/editors/notation/NoteFontViewer.h
index 69c62c6..8be1257 100644
--- a/src/gui/editors/notation/NoteFontViewer.h
+++ b/src/gui/editors/notation/NoteFontViewer.h
@@ -44,7 +44,7 @@ class FontViewFrame;
class NoteFontViewer : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
NoteFontViewer(TQWidget *parent, TQString noteFontName,
diff --git a/src/gui/editors/notation/NoteInserter.h b/src/gui/editors/notation/NoteInserter.h
index 81f035d..6280acb 100644
--- a/src/gui/editors/notation/NoteInserter.h
+++ b/src/gui/editors/notation/NoteInserter.h
@@ -52,7 +52,7 @@ class Event;
class NoteInserter : public NotationTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/RestInserter.h b/src/gui/editors/notation/RestInserter.h
index 3cac3d3..54f7517 100644
--- a/src/gui/editors/notation/RestInserter.h
+++ b/src/gui/editors/notation/RestInserter.h
@@ -48,7 +48,7 @@ class Event;
class RestInserter : public NoteInserter
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/TextInserter.h b/src/gui/editors/notation/TextInserter.h
index b00c4ae..f4d6a4a 100644
--- a/src/gui/editors/notation/TextInserter.h
+++ b/src/gui/editors/notation/TextInserter.h
@@ -48,7 +48,7 @@ class NotationView;
class TextInserter : public NotationTool
{
Q_OBJECT
- TQ_OBJECT
+
friend class NotationToolBox;
diff --git a/src/gui/editors/notation/TrackHeader.h b/src/gui/editors/notation/TrackHeader.h
index 85ee067..50047c3 100644
--- a/src/gui/editors/notation/TrackHeader.h
+++ b/src/gui/editors/notation/TrackHeader.h
@@ -53,7 +53,7 @@ class Segment;
class TrackHeader : public TQLabel
{
Q_OBJECT
- TQ_OBJECT
+
public:
/**
* Create a new track header for track of id trackId.