void FileTransferHandlerManager::accountRegistered(Account account) { connect(account, SIGNAL(protocolHandlerChanged()), this, SLOT(protocolHandlerChanged())); createHandlers(account); }
void FileTransferHandlerManager::accountUnregistered(Account account) { removeHandlers(account); disconnect(account, SIGNAL(protocolHandlerChanged()), this, SLOT(protocolHandlerChanged())); }
void FileTransferManager::accountAdded(Account account) { connect(account, SIGNAL(protocolHandlerChanged(Account)), this, SLOT(protocolHandlerChanged(Account))); protocolHandlerChanged(account); }