summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/src/icons.cpp
blob: 4091a9cb4316ce308781d9aacf228a9f3c91bfa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "stdafx.h"

IconItem iconList[ICON_MAXID] =
{
	{ LPGEN("OTR"),            "otr",         IDI_OTR        },
	{ LPGEN("OTR private"),    "private",     IDI_PRIVATE    },
	{ LPGEN("OTR unverified"), "unverified",  IDI_UNVERIFIED },
	{ LPGEN("OTR finished"),   "finished",    IDI_FINISHED   },
	{ LPGEN("OTR not secure"), "not_private", IDI_INSECURE   },
	{ LPGEN("Refresh"),        "refresh",     IDI_REFRESH    }
};

void InitIcons()
{
	g_plugin.registerIcon("OTR", iconList, MODULENAME);
}