diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:39:17 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:39:17 -0600 |
commit | d9f7baa97dec2be4dd11726395eb704c837ce788 (patch) | |
tree | e94d72ba287986b45ad30d96dfab823dac60791d /kradio3/src/include | |
parent | 8d4453deaa5f97e1bbe76ea45fdcac6121da8c9d (diff) | |
download | tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.tar.gz tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kradio3/src/include')
-rw-r--r-- | kradio3/src/include/interfaces.h | 8 | ||||
-rw-r--r-- | kradio3/src/include/soundstreamclient_interfaces.h | 4 | ||||
-rw-r--r-- | kradio3/src/include/soundstreamid.h | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/kradio3/src/include/interfaces.h b/kradio3/src/include/interfaces.h index 7e53a24..c698521 100644 --- a/kradio3/src/include/interfaces.h +++ b/kradio3/src/include/interfaces.h @@ -145,7 +145,7 @@ - sending Messages Declare a virtual constant method with return value "int" and the desired - parameters. The return value will indicate how many tqreceivers have handled + parameters. The return value will indicate how many receivers have handled the message: virtual bool SendingMessages(int any_or_non_param) const; @@ -168,7 +168,7 @@ The method has to be implemented by a derived class. The current item of the - tqreceivers conntions list is set to the sender. + receivers conntions list is set to the sender. - querying queries @@ -195,7 +195,7 @@ IF_ANSWER( AnsweringQueries(int another_param) ) The method has to be implemented by a derived class. The current item of the - tqreceivers conntions list is set to the sender. + receivers conntions list is set to the sender. At last a note on maxConnections. This member is set on initialization by @@ -216,7 +216,7 @@ int ComplementaryInterface::SendingMessages(int any_or_non_param) const { IF_SEND_MESSAGE( ReceivingMessages(any_or_non_param) ) - // macro includes "return #tqreceivers" + // macro includes "return #receivers" } int ComplementaryInterface::QueryingQueries(int another_param) const diff --git a/kradio3/src/include/soundstreamclient_interfaces.h b/kradio3/src/include/soundstreamclient_interfaces.h index 310d42a..3f53ac5 100644 --- a/kradio3/src/include/soundstreamclient_interfaces.h +++ b/kradio3/src/include/soundstreamclient_interfaces.h @@ -107,7 +107,7 @@ SENDERS: IF_SENDER_FINE ( queryIsMuted, (SoundStreamID /*id*/, bool &) ) - // sendPreparePlayback/sendPrepareCapture don't make sense for multiple tqreceivers + // sendPreparePlayback/sendPrepareCapture don't make sense for multiple receivers IF_SENDER_FINE ( sendReleasePlayback, (SoundStreamID id) ) IF_SENDER_FINE ( sendReleaseCapture, (SoundStreamID id) ) @@ -315,7 +315,7 @@ SENDERS: CALL_SNDSTR_SERVER ( queryIsMuted, (SoundStreamID id, bool &v), (id, v) ) - // sendPreparePlayback/sendPrepareCapture don't make sense for multiple tqreceivers + // sendPreparePlayback/sendPrepareCapture don't make sense for multiple receivers CALL_SNDSTR_SERVER ( sendReleasePlayback, (SoundStreamID id), (id) ) CALL_SNDSTR_SERVER ( sendReleaseCapture, (SoundStreamID id), (id) ) diff --git a/kradio3/src/include/soundstreamid.h b/kradio3/src/include/soundstreamid.h index 4133103..e7aa4d5 100644 --- a/kradio3/src/include/soundstreamid.h +++ b/kradio3/src/include/soundstreamid.h @@ -44,7 +44,7 @@ public: bool HasSamePhysicalID(const SoundStreamID &x) const { return m_PhysicalID == x.m_PhysicalID; } bool isValid() const { return m_ID != 0; } // m_PhysicalID is not checked! - void tqinvalidate(); + void invalidate(); static const SoundStreamID InvalidID; |