mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-10 11:36:08 +08:00
Replaced c++ standard integer types with Qt types
In order to be consistent, all standard integer types have been replaced by the equivalent Qt ones in voice/audio code. Projects covered - BlackCore - BlackMisc - sample_voice_client refs #99
This commit is contained in:
@@ -190,13 +190,13 @@ void Client::connectionStatusDisconnected()
|
||||
|
||||
void Client::audioStartedStream(const BlackCore::IVoice::ComUnit comUnit)
|
||||
{
|
||||
std::cout << "Started stream in room index " << static_cast<int32_t>(comUnit) << std::endl;
|
||||
std::cout << "Started stream in room index " << static_cast<qint32>(comUnit) << std::endl;
|
||||
printLinePrefix();
|
||||
}
|
||||
|
||||
void Client::audioStoppedStream(const BlackCore::IVoice::ComUnit comUnit)
|
||||
{
|
||||
std::cout << "Stopped stream in room index " << static_cast<int32_t>(comUnit) << std::endl;
|
||||
std::cout << "Stopped stream in room index " << static_cast<qint32>(comUnit) << std::endl;
|
||||
printLinePrefix();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user