diff options
author | Darrell Anderson <[email protected]> | 2012-04-13 02:31:15 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-04-13 02:31:15 -0500 |
commit | 7f4c75f7aca7a02131aafb294623abf0dfaa3faf (patch) | |
tree | 810f22cea0773d25143286b204022af8ce91452a /kradio3/plugins/recording/reccfg_interfaces.cpp | |
parent | dd53ab754dde65cecd20bb4605413a5e5489217b (diff) | |
download | tderadio-7f4c75f7aca7a02131aafb294623abf0dfaa3faf.tar.gz tderadio-7f4c75f7aca7a02131aafb294623abf0dfaa3faf.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kradio3/plugins/recording/reccfg_interfaces.cpp')
-rw-r--r-- | kradio3/plugins/recording/reccfg_interfaces.cpp | 16 |
1 files changed, 8 insertions, 8 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 ); |