diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:14:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:14:51 -0600 |
commit | ef13416bfc43e51ef4e20919e0fab81ae05e0fe2 (patch) | |
tree | 76bc36e1cbecae4d7811b5605adfb0804d0041f9 /src/gui/seqmanager/SequenceManager.h | |
parent | 6ca08e7a881c0c97f338e0085f75af04ec08ad04 (diff) | |
download | rosegarden-ef13416bfc43e51ef4e20919e0fab81ae05e0fe2.tar.gz rosegarden-ef13416bfc43e51ef4e20919e0fab81ae05e0fe2.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/gui/seqmanager/SequenceManager.h')
-rw-r--r-- | src/gui/seqmanager/SequenceManager.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/seqmanager/SequenceManager.h b/src/gui/seqmanager/SequenceManager.h index c723e79..8fdf848 100644 --- a/src/gui/seqmanager/SequenceManager.h +++ b/src/gui/seqmanager/SequenceManager.h @@ -102,7 +102,7 @@ public: void fastForwardToEnd(); void setLoop(const timeT &lhs, const timeT &rhs); - void notifySequencertqStatus(TransporttqStatus status); + void notifySequencerStatus(TransportStatus status); void sendSequencerJump(const RealTime &time); // Events coming in @@ -112,7 +112,7 @@ public: // Before playing and recording. If warnUser is true, show the // user a warning dialog if there is a problem with the setup. // - void checkSoundDrivertqStatus(bool warnUser); + void checkSoundDriverStatus(bool warnUser); /** * Send program changes and align Instrument lists before playback @@ -126,8 +126,8 @@ public: void preparePlayback(bool forceProgramChanges = false); /// Check and set sequencer status - void setTransporttqStatus(const TransporttqStatus &status); - TransporttqStatus getTransporttqStatus() const { return m_transporttqStatus; } + void setTransportStatus(const TransportStatus &status); + TransportStatus getTransportStatus() const { return m_transportStatus; } /** * Suspend the sequencer to allow for a safe DCOP call() i.e. one @@ -140,7 +140,7 @@ public: void sendAudioLevel(MappedEvent *mE); /// Find what has been initialised and what hasn't - unsigned int getSoundDrivertqStatus() { return m_soundDrivertqStatus; } + unsigned int getSoundDriverStatus() { return m_soundDriverStatus; } /// Reset MIDI controllers void resetControllers(); @@ -247,7 +247,7 @@ protected: void resetMetronomeMmapper(); void resetTempoSegmentMmapper(); void resetTimeSigSegmentMmapper(); - void checkRefreshtqStatus(); + void checkRefreshStatus(); void sendMIDIRecordingDevice(const TQString recordDeviceStr); void restoreRecordSubscriptions(); bool shouldWarnForImpreciseTimer(); @@ -267,8 +267,8 @@ protected: bool m_metronomeNeedsRefresh; // statuses - TransporttqStatus m_transporttqStatus; - unsigned int m_soundDrivertqStatus; + TransportStatus m_transportStatus; + unsigned int m_soundDriverStatus; // pointer to the transport dialog TransportDialog *m_transport; |