Missed some qints

This commit is contained in:
Atlante45 2014-09-30 21:20:37 -07:00
parent 68c25e805a
commit 56acc86f4f
2 changed files with 6 additions and 6 deletions

View file

@ -658,19 +658,19 @@ void AvatarData::setPlayerVolume(float volume) {
}
}
void AvatarData::setPlayerAudioOffset(qint64 audioOffset) {
void AvatarData::setPlayerAudioOffset(int audioOffset) {
if (_player) {
_player->setAudioOffset(audioOffset);
}
}
void AvatarData::setPlayerFrame(int frame) {
void AvatarData::setPlayerFrame(unsigned int frame) {
if (_player) {
_player->setCurrentFrame(frame);
}
}
void AvatarData::setPlayerTime(qint64 time) {
void AvatarData::setPlayerTime(unsigned int time) {
if (_player) {
_player->setCurrentTime(time);
}

View file

@ -303,9 +303,9 @@ public slots:
void loadRecording(QString filename);
void startPlaying();
void setPlayerVolume(float volume);
void setPlayerAudioOffset(qint64 audioOffset);
void setPlayerFrame(int frame);
void setPlayerTime(qint64 time);
void setPlayerAudioOffset(int audioOffset);
void setPlayerFrame(unsigned int frame);
void setPlayerTime(unsigned int time);
void setPlayFromCurrentLocation(bool playFromCurrentLocation);
void setPlayerLoop(bool loop);
void setPlayerUseDisplayName(bool useDisplayName);