summaryrefslogtreecommitdiffstats
path: root/src/sound
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/sound
parent6c5563b774ff6d926703282d34031a32d75d0c2f (diff)
downloadrosegarden-c97367ce4f0e465de236acd5e8e59cef08ada0ce.tar.gz
rosegarden-c97367ce4f0e465de236acd5e8e59cef08ada0ce.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/sound')
-rw-r--r--src/sound/AudioFileManager.h2
-rw-r--r--src/sound/AudioFileTimeStretcher.h2
-rw-r--r--src/sound/MidiFile.h2
-rw-r--r--src/sound/PeakFile.h2
-rw-r--r--src/sound/PeakFileManager.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/sound/AudioFileManager.h b/src/sound/AudioFileManager.h
index 8bc4535..c129ad3 100644
--- a/src/sound/AudioFileManager.h
+++ b/src/sound/AudioFileManager.h
@@ -61,7 +61,7 @@ typedef std::vector<AudioFile*>::const_iterator AudioFileManagerIterator;
class AudioFileManager : public TQObject, public XmlExportable
{
Q_OBJECT
- TQ_OBJECT
+
public:
AudioFileManager();
virtual ~AudioFileManager();
diff --git a/src/sound/AudioFileTimeStretcher.h b/src/sound/AudioFileTimeStretcher.h
index 0654b59..63e371d 100644
--- a/src/sound/AudioFileTimeStretcher.h
+++ b/src/sound/AudioFileTimeStretcher.h
@@ -36,7 +36,7 @@ class AudioFileManager;
class AudioFileTimeStretcher : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
AudioFileTimeStretcher(AudioFileManager *mgr);
diff --git a/src/sound/MidiFile.h b/src/sound/MidiFile.h
index ffdf929..4134dd3 100644
--- a/src/sound/MidiFile.h
+++ b/src/sound/MidiFile.h
@@ -66,7 +66,7 @@ class Studio;
class MidiFile : public TQObject, public SoundFile
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef enum
diff --git a/src/sound/PeakFile.h b/src/sound/PeakFile.h
index 5b4fc1e..86ecc56 100644
--- a/src/sound/PeakFile.h
+++ b/src/sound/PeakFile.h
@@ -54,7 +54,7 @@ typedef std::pair<RealTime, RealTime> SplitPointPair;
class PeakFile : public TQObject, public SoundFile
{
Q_OBJECT
- TQ_OBJECT
+
public:
PeakFile(AudioFile *audioFile);
diff --git a/src/sound/PeakFileManager.h b/src/sound/PeakFileManager.h
index 26ced4d..f608bc8 100644
--- a/src/sound/PeakFileManager.h
+++ b/src/sound/PeakFileManager.h
@@ -49,7 +49,7 @@ class RealTime;
class PeakFileManager : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
// updatePercentage tells this object how often to throw a
// percentage complete message - active between 0-100 only