summaryrefslogtreecommitdiff
path: root/device.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-06-16 13:26:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-06-16 13:26:00 +0200
commit3ab746babd6d879f05b4cbc76662c65cf4146397 (patch)
tree0312baea9a9cef76689a86d6e74ffed68320e1cc /device.c
parenta4bfddd2f995ad03409de005bc3015437c10aa06 (diff)
downloadvdr-3ab746babd6d879f05b4cbc76662c65cf4146397.tar.gz
vdr-3ab746babd6d879f05b4cbc76662c65cf4146397.tar.bz2
Changed 'cStatusMonitor' to 'cStatus'1.1.3
Diffstat (limited to 'device.c')
-rw-r--r--device.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/device.c b/device.c
index 8da7fdde..fe756592 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c 1.1 2002/06/16 12:29:09 kls Exp $
+ * $Id: device.c 1.2 2002/06/16 13:23:31 kls Exp $
*/
#include "device.h"
@@ -459,7 +459,7 @@ eSetChannelResult cDevice::SetChannel(int ChannelNumber, int Frequency, char Pol
//XXX+StopTransfer();
//XXX+StopReplay();
- cStatusMonitor::MsgChannelSwitch(this, 0);
+ cStatus::MsgChannelSwitch(this, 0);
// Must set this anyway to avoid getting stuck when switching through
// channels with 'Up' and 'Down' keys:
@@ -639,7 +639,7 @@ eSetChannelResult cDevice::SetChannel(int ChannelNumber, int Frequency, char Pol
if (Result == scrOk && siProcessor)
siProcessor->SetCurrentTransponder(Frequency);
- cStatusMonitor::MsgChannelSwitch(this, ChannelNumber);
+ cStatus::MsgChannelSwitch(this, ChannelNumber);
return Result;
}
@@ -660,7 +660,7 @@ void cDevice::SetVolume(int Volume, bool Absolute)
audioMixer_t am;
am.volume_left = am.volume_right = volume;
CHECK(ioctl(fd_audio, AUDIO_SET_MIXER, &am));
- cStatusMonitor::MsgSetVolume(volume, Absolute);
+ cStatus::MsgSetVolume(volume, Absolute);
if (volume > 0)
mute = false;
}