Fixes the build, I've had file corruption and forgot to

restore this file from the backup I've made, so it got
forgotten in the last commit...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38491 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2010-09-01 12:56:27 +00:00
parent 80a9df2502
commit 4edcbff706
2 changed files with 8 additions and 0 deletions

View File

@ -452,6 +452,13 @@ TransportControlGroup::SetVolume(float value)
}
void
TransportControlGroup::SetAudioChannelCount(int32 count)
{
fPeakView->SetChannelCount(count);
}
void
TransportControlGroup::SetPosition(float value, bigtime_t position,
bigtime_t duration)

View File

@ -66,6 +66,7 @@ public:
void SetMuted(bool mute);
void SetVolume(float value);
void SetAudioChannelCount(int32 count);
void SetPosition(float value, bigtime_t position,
bigtime_t duration);
float Position() const;