From 6e53dfca72b932c4bdcd7aa02ca62bf8b2630eac Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 26 Jul 2016 09:20:25 +0000 Subject: less TCHARs: - TCHAR is replaced with wchar_t everywhere; - LPGENT replaced with either LPGENW or LPGEN; - fixes for ANSI plugins that improperly used _t functions; - TCHAR *t removed from MAllStrings; - ptszGroup, ptszTitle & ptszTab in OPTIONSDIALOGPAGE replaced with pwsz* git-svn-id: http://svn.miranda-ng.org/main/trunk@17133 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/skype_icons.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'protocols/SkypeWeb/src/skype_icons.cpp') diff --git a/protocols/SkypeWeb/src/skype_icons.cpp b/protocols/SkypeWeb/src/skype_icons.cpp index c4c40d1219..18ab4ad130 100644 --- a/protocols/SkypeWeb/src/skype_icons.cpp +++ b/protocols/SkypeWeb/src/skype_icons.cpp @@ -19,20 +19,20 @@ along with this program. If not, see . IconItemT CSkypeProto::Icons[] = { - { LPGENT("Protocol icon"), "main", IDI_SKYPE }, - { LPGENT("Create new chat icon"), "conference", IDI_CONFERENCE }, - { LPGENT("Sync history icon"), "synchistory", IDI_SYNCHISTORY }, - { LPGENT("Block user icon"), "user_block", IDI_BLOCKUSER }, - { LPGENT("Unblock user icon"), "user_unblock", IDI_UNBLOCKUSER }, - { LPGENT("Incoming call icon"), "inc_call", IDI_CALL }, - { LPGENT("Notification icon"), "notify", IDI_NOTIFY }, - { LPGENT("Error icon"), "error", IDI_ERRORICON }, - { LPGENT("Action icon"), "me_action", IDI_ACTION_ME } + { LPGENW("Protocol icon"), "main", IDI_SKYPE }, + { LPGENW("Create new chat icon"), "conference", IDI_CONFERENCE }, + { LPGENW("Sync history icon"), "synchistory", IDI_SYNCHISTORY }, + { LPGENW("Block user icon"), "user_block", IDI_BLOCKUSER }, + { LPGENW("Unblock user icon"), "user_unblock", IDI_UNBLOCKUSER }, + { LPGENW("Incoming call icon"), "inc_call", IDI_CALL }, + { LPGENW("Notification icon"), "notify", IDI_NOTIFY }, + { LPGENW("Error icon"), "error", IDI_ERRORICON }, + { LPGENW("Action icon"), "me_action", IDI_ACTION_ME } }; void CSkypeProto::InitIcons() { - Icon_RegisterT(g_hInstance, LPGENT("Protocols") L"/" LPGENT(MODULE), Icons, _countof(Icons), MODULE); + Icon_RegisterT(g_hInstance, LPGENW("Protocols") L"/" MODULEW, Icons, _countof(Icons), MODULE); } HICON CSkypeProto::GetIcon(int iconId) -- cgit v1.2.3