summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/recording
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 02:31:15 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-13 02:31:15 -0500
commit7f4c75f7aca7a02131aafb294623abf0dfaa3faf (patch)
tree810f22cea0773d25143286b204022af8ce91452a /kradio3/plugins/recording
parentdd53ab754dde65cecd20bb4605413a5e5489217b (diff)
downloadtderadio-7f4c75f7aca7a02131aafb294623abf0dfaa3faf.tar.gz
tderadio-7f4c75f7aca7a02131aafb294623abf0dfaa3faf.zip
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kradio3/plugins/recording')
-rw-r--r--kradio3/plugins/recording/reccfg_interfaces.cpp16
-rw-r--r--kradio3/plugins/recording/reccfg_interfaces.h18
2 files changed, 17 insertions, 17 deletions
diff --git a/kradio3/plugins/recording/reccfg_interfaces.cpp b/kradio3/plugins/recording/reccfg_interfaces.cpp
index 6876f86..9cbc9e6 100644
--- a/kradio3/plugins/recording/reccfg_interfaces.cpp
+++ b/kradio3/plugins/recording/reccfg_interfaces.cpp
@@ -72,45 +72,45 @@ IF_IMPL_SENDER ( IRecCfgClient::sendRecordingConfig(const RecordingConfig &cf
setRecordingConfig(cfg)
);
-IF_IMPL_TQUERY ( void IRecCfgClient::queryEncoderBuffer(size_t &BufferSize, size_t &BufferCount),
+IF_IMPL_QUERY ( void IRecCfgClient::queryEncoderBuffer(size_t &BufferSize, size_t &BufferCount),
getEncoderBuffer(BufferSize, BufferCount),
);
static SoundFormat defaultSoundFormat;
-IF_IMPL_TQUERY ( const SoundFormat &IRecCfgClient::querySoundFormat (),
+IF_IMPL_QUERY ( const SoundFormat &IRecCfgClient::querySoundFormat (),
getSoundFormat(),
defaultSoundFormat
);
-IF_IMPL_TQUERY ( int IRecCfgClient::queryMP3Quality (),
+IF_IMPL_QUERY ( int IRecCfgClient::queryMP3Quality (),
getMP3Quality(),
7
);
-IF_IMPL_TQUERY ( float IRecCfgClient::queryOggQuality (),
+IF_IMPL_QUERY ( float IRecCfgClient::queryOggQuality (),
getOggQuality(),
7
);
static TQString defaultRecDir("/tmp");
-IF_IMPL_TQUERY ( const TQString &IRecCfgClient::queryRecordingDirectory(),
+IF_IMPL_QUERY ( const TQString &IRecCfgClient::queryRecordingDirectory(),
getRecordingDirectory(),
defaultRecDir
);
-IF_IMPL_TQUERY ( RecordingConfig::OutputFormat IRecCfgClient::queryOutputFormat(),
+IF_IMPL_QUERY ( RecordingConfig::OutputFormat IRecCfgClient::queryOutputFormat(),
getOutputFormat(),
RecordingConfig::outputWAV
);
-IF_IMPL_TQUERY ( bool IRecCfgClient::queryPreRecording(int &seconds),
+IF_IMPL_QUERY ( bool IRecCfgClient::queryPreRecording(int &seconds),
getPreRecording(seconds),
false
);
static RecordingConfig defaultRecConfig;
-IF_IMPL_TQUERY ( const RecordingConfig &IRecCfgClient::queryRecordingConfig(),
+IF_IMPL_QUERY ( const RecordingConfig &IRecCfgClient::queryRecordingConfig(),
getRecordingConfig(),
defaultRecConfig
);
diff --git a/kradio3/plugins/recording/reccfg_interfaces.h b/kradio3/plugins/recording/reccfg_interfaces.h
index e733921..937ca42 100644
--- a/kradio3/plugins/recording/reccfg_interfaces.h
+++ b/kradio3/plugins/recording/reccfg_interfaces.h
@@ -84,15 +84,15 @@ RECEIVERS:
IF_RECEIVER( noticePreRecordingChanged (bool enable, int seconds) )
IF_RECEIVER( noticeRecordingConfigChanged (const RecordingConfig &cfg) )
-TQUERIES:
- IF_TQUERY ( void queryEncoderBuffer(size_t &BufferSize, size_t &BufferCount) )
- IF_TQUERY ( const SoundFormat &querySoundFormat () )
- IF_TQUERY ( int queryMP3Quality () )
- IF_TQUERY ( float queryOggQuality () )
- IF_TQUERY ( const TQString &queryRecordingDirectory() )
- IF_TQUERY ( RecordingConfig::OutputFormat queryOutputFormat() )
- IF_TQUERY ( bool queryPreRecording(int &seconds) )
- IF_TQUERY ( const RecordingConfig &queryRecordingConfig() )
+QUERIES:
+ IF_QUERY ( void queryEncoderBuffer(size_t &BufferSize, size_t &BufferCount) )
+ IF_QUERY ( const SoundFormat &querySoundFormat () )
+ IF_QUERY ( int queryMP3Quality () )
+ IF_QUERY ( float queryOggQuality () )
+ IF_QUERY ( const TQString &queryRecordingDirectory() )
+ IF_QUERY ( RecordingConfig::OutputFormat queryOutputFormat() )
+ IF_QUERY ( bool queryPreRecording(int &seconds) )
+ IF_QUERY ( const RecordingConfig &queryRecordingConfig() )
RECEIVERS:
virtual void noticeConnectedI (cmplInterface *, bool /*pointer_valid*/);