diff options
author | George Hazan <george.hazan@gmail.com> | 2016-07-05 14:21:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-07-05 14:21:03 +0000 |
commit | 94ed647bd8f3c21baf568c1fe46e797f68b16e6f (patch) | |
tree | 233f60dd55f52bf415acbaf70462c49fb98f369a /protocols/FacebookRM/src | |
parent | cd7031447b2c05ebf443f84a5c8852ccf25daf0f (diff) |
expanded facebook icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@17059 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src')
-rw-r--r-- | protocols/FacebookRM/src/resource.h | 6 | ||||
-rw-r--r-- | protocols/FacebookRM/src/theme.cpp | 24 |
2 files changed, 21 insertions, 9 deletions
diff --git a/protocols/FacebookRM/src/resource.h b/protocols/FacebookRM/src/resource.h index 2c43b7a224..e3632de574 100644 --- a/protocols/FacebookRM/src/resource.h +++ b/protocols/FacebookRM/src/resource.h @@ -20,6 +20,12 @@ #define IDI_READ 132 #define IDI_KEYS 133 #define IDD_GUARD 134 +#define IDI_ANGRY 135 +#define IDI_HAHA 136 +#define IDI_LIKE 137 +#define IDI_LOVE 138 +#define IDI_SAD 139 +#define IDI_WOW 140 #define IDC_UN 1001 #define IDC_PW 1002 #define IDC_NEWACCOUNTLINK 1003 diff --git a/protocols/FacebookRM/src/theme.cpp b/protocols/FacebookRM/src/theme.cpp index 42d1b6d8e8..8eaf1858cd 100644 --- a/protocols/FacebookRM/src/theme.cpp +++ b/protocols/FacebookRM/src/theme.cpp @@ -38,15 +38,21 @@ HGENMENU g_hContactMenuVisitConversation; static IconItem icons[] =
{
- { LPGEN("Facebook icon"), "facebook", IDI_FACEBOOK },
- { LPGEN("Mind"), "mind", IDI_MIND },
- { LPGEN("Poke"), "poke", IDI_POKE },
- { LPGEN("Notification"), "notification", IDI_NOTIFICATION },
- { LPGEN("Newsfeed"), "newsfeed", IDI_NEWSFEED },
- { LPGEN("Friendship details"), "friendship", IDI_FRIENDS },
- { LPGEN("Conversation"), "conversation", IDI_CONVERSATION },
- { LPGEN("Message read"), "read", IDI_READ },
- { LPGEN("Captcha form icon"), "key", IDI_KEYS }
+ { LPGEN("Facebook icon"), "facebook", IDI_FACEBOOK },
+ { LPGEN("Mind"), "mind", IDI_MIND },
+ { LPGEN("Poke"), "poke", IDI_POKE },
+ { LPGEN("Notification"), "notification", IDI_NOTIFICATION },
+ { LPGEN("Newsfeed"), "newsfeed", IDI_NEWSFEED },
+ { LPGEN("Friendship details"), "friendship", IDI_FRIENDS },
+ { LPGEN("Conversation"), "conversation", IDI_CONVERSATION },
+ { LPGEN("Message read"), "read", IDI_READ },
+ { LPGEN("Captcha form icon"), "key", IDI_KEYS },
+ { LPGEN("Angry"), "angry", IDI_ANGRY },
+ { LPGEN("Haha"), "haha", IDI_HAHA },
+ { LPGEN("Like"), "like", IDI_LIKE },
+ { LPGEN("Love"), "love", IDI_LOVE },
+ { LPGEN("Sad"), "sad", IDI_SAD },
+ { LPGEN("Wow"), "wow", IDI_WOW },
};
void InitIcons(void)
|