Bug 1295871 - CHAT_ATTRS_ARRAY should only be defined if MOZ_THUNDERBIRD=1. r=rkent

This commit is contained in:
Edmund Wong 2016-08-17 14:16:51 +08:00
Родитель 0502798ecd
Коммит 14b0f78832
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -93,6 +93,8 @@ static const AppendItem CUSTOM_ATTRS_ARRAY[] = {
{kNotesProperty, "", eAppendLine}
};
#ifdef MOZ_THUNDERBIRD
static const AppendItem CHAT_ATTRS_ARRAY[] = {
{kGtalkProperty, "propertyGtalk", eAppendLabel},
{kAIMProperty, "propertyAIM", eAppendLabel},
@ -104,6 +106,7 @@ static const AppendItem CHAT_ATTRS_ARRAY[] = {
{kXMPPProperty, "propertyXMPP", eAppendLabel},
{kIRCProperty, "propertyIRC", eAppendLabel}
};
#endif
nsAbCardProperty::nsAbCardProperty()
: m_IsMailList(false)