diff options
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 ); |