blob: 16374745d3404ea6d623b2572ca6a864c7477abc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "stdafx.h"
#include "protocol.h"
#include "utils.h"
ext::string Protocol::getDisplayName(const ext::a::string& protocol)
{
PROTOACCOUNT *pa = Proto_GetAccount(protocol.c_str());
return (pa == NULL) ? utils::fromA(protocol) : pa->tszAccountName;
}
|