mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
Use full qualified class name for ConnectionStatus.
Qt gets confused by the different ConnectionStatus enums we are using and complains it cannot queue the argument. It only works when the fully qualified class name is used.
This commit is contained in:
@@ -519,7 +519,8 @@ namespace BlackCore
|
||||
/*
|
||||
* Connection status changed
|
||||
*/
|
||||
void CContextAudio::ps_connectionStatusChanged(IVoiceChannel::ConnectionStatus oldStatus, IVoiceChannel::ConnectionStatus newStatus)
|
||||
void CContextAudio::ps_connectionStatusChanged(BlackCore::IVoiceChannel::ConnectionStatus oldStatus,
|
||||
BlackCore::IVoiceChannel::ConnectionStatus newStatus)
|
||||
{
|
||||
Q_UNUSED(oldStatus);
|
||||
|
||||
|
||||
@@ -75,7 +75,8 @@ namespace BlackCore
|
||||
void statusMessage(const BlackMisc::CStatusMessage &message);
|
||||
|
||||
//! The status of a room has changed.
|
||||
void connectionStatusChanged(ConnectionStatus oldStatus, ConnectionStatus newStatus);
|
||||
void connectionStatusChanged(BlackCore::IVoiceChannel::ConnectionStatus oldStatus,
|
||||
BlackCore::IVoiceChannel::ConnectionStatus newStatus);
|
||||
|
||||
// Signals about users joining and leaving
|
||||
|
||||
|
||||
Reference in New Issue
Block a user