mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-08 14:39:34 +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) {
|
if (_player) {
|
||||||
_player->setAudioOffset(audioOffset);
|
_player->setAudioOffset(audioOffset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AvatarData::setPlayerFrame(int frame) {
|
void AvatarData::setPlayerFrame(unsigned int frame) {
|
||||||
if (_player) {
|
if (_player) {
|
||||||
_player->setCurrentFrame(frame);
|
_player->setCurrentFrame(frame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AvatarData::setPlayerTime(qint64 time) {
|
void AvatarData::setPlayerTime(unsigned int time) {
|
||||||
if (_player) {
|
if (_player) {
|
||||||
_player->setCurrentTime(time);
|
_player->setCurrentTime(time);
|
||||||
}
|
}
|
||||||
|
|
|
@ -303,9 +303,9 @@ public slots:
|
||||||
void loadRecording(QString filename);
|
void loadRecording(QString filename);
|
||||||
void startPlaying();
|
void startPlaying();
|
||||||
void setPlayerVolume(float volume);
|
void setPlayerVolume(float volume);
|
||||||
void setPlayerAudioOffset(qint64 audioOffset);
|
void setPlayerAudioOffset(int audioOffset);
|
||||||
void setPlayerFrame(int frame);
|
void setPlayerFrame(unsigned int frame);
|
||||||
void setPlayerTime(qint64 time);
|
void setPlayerTime(unsigned int time);
|
||||||
void setPlayFromCurrentLocation(bool playFromCurrentLocation);
|
void setPlayFromCurrentLocation(bool playFromCurrentLocation);
|
||||||
void setPlayerLoop(bool loop);
|
void setPlayerLoop(bool loop);
|
||||||
void setPlayerUseDisplayName(bool useDisplayName);
|
void setPlayerUseDisplayName(bool useDisplayName);
|
||||||
|
|
Loading…
Reference in a new issue