mirror of
https://github.com/overte-org/overte.git
synced 2025-04-17 08:56:36 +02:00
Missed some qints
This commit is contained in:
parent
68c25e805a
commit
56acc86f4f
2 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue