diff options
Diffstat (limited to 'src/core/stdmsg/src/globals.cpp')
-rw-r--r-- | src/core/stdmsg/src/globals.cpp | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/src/core/stdmsg/src/globals.cpp b/src/core/stdmsg/src/globals.cpp index 73972a2312..76c1cf5a2b 100644 --- a/src/core/stdmsg/src/globals.cpp +++ b/src/core/stdmsg/src/globals.cpp @@ -21,20 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "stdafx.h"
-IconItem iconList[] =
-{
- { LPGEN("Incoming message (10x10)"), "INCOMING", IDI_INCOMING, 10 },
- { LPGEN("Outgoing message (10x10)"), "OUTGOING", IDI_OUTGOING, 10 },
- { LPGEN("Notice (10x10)"), "NOTICE", IDI_NOTICE, 10 },
- { LPGEN("Encrypted (10x10)"), "UNVERIFIED", IDI_SECURE, 10 },
- { LPGEN("Encrypted verified (10x10)"), "PRIVATE", IDI_SECURE_STRONG, 10 },
-};
-
-static void InitIcons(void)
-{
- g_plugin.registerIcon(LPGEN("Messaging"), iconList, "SRMM");
-}
-
static int IconsChanged(WPARAM, LPARAM)
{
FreeMsgLogIcons();
@@ -84,6 +70,8 @@ static int AvatarChanged(WPARAM hContact, LPARAM lParam) /////////////////////////////////////////////////////////////////////////////////////////
+void InitIcons();
+
void InitGlobals()
{
int iOldValue = g_plugin.getByte("HideNames", -1);
|