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()));
}
Example #3
0
void FileTransferManager::accountAdded(Account account)
{
	connect(account, SIGNAL(protocolHandlerChanged(Account)), this, SLOT(protocolHandlerChanged(Account)));
	protocolHandlerChanged(account);
}