summaryrefslogtreecommitdiffstats
path: root/kradio3/src/include/interfaces.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:39:17 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:39:17 -0600
commitd9f7baa97dec2be4dd11726395eb704c837ce788 (patch)
treee94d72ba287986b45ad30d96dfab823dac60791d /kradio3/src/include/interfaces.h
parent8d4453deaa5f97e1bbe76ea45fdcac6121da8c9d (diff)
downloadtderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.tar.gz
tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kradio3/src/include/interfaces.h')
-rw-r--r--kradio3/src/include/interfaces.h8
1 files changed, 4 insertions, 4 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