From dd96e20eb908dbbecf1a17fdeee0c44ed8b3a974 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 29 Jul 2012 19:03:51 +0000 Subject: slightly rewritten finger git-svn-id: http://svn.miranda-ng.org/main/trunk@1244 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/FingerPrintModPlus/src/finger_groups.h | 48 +++++++++++++------------- 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'plugins/FingerPrintModPlus/src/finger_groups.h') diff --git a/plugins/FingerPrintModPlus/src/finger_groups.h b/plugins/FingerPrintModPlus/src/finger_groups.h index 3e97519bdf..e125051cd2 100644 --- a/plugins/FingerPrintModPlus/src/finger_groups.h +++ b/plugins/FingerPrintModPlus/src/finger_groups.h @@ -1,94 +1,94 @@ case MIRANDA_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupMiranda", 1)) - SectName = _T("Client Icons/Miranda"); + return _T("Client Icons/Miranda"); break; case MULTIPROTOCOL_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupMulti", 1)) - SectName = _T("Client Icons/Multi-Protocol"); + return _T("Client Icons/Multi-Protocol"); break; case ICQ_OFF_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupIcq", 1)) - SectName = _T("Client Icons/ICQ/Official"); + return _T("Client Icons/ICQ/Official"); break; case ICQ_UNOFF_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupIcq", 1)) - SectName = _T("Client Icons/ICQ/Unofficial"); + return _T("Client Icons/ICQ/Unofficial"); break; case JABBER_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupJabber", 1)) - SectName = _T("Client Icons/Jabber"); + return _T("Client Icons/Jabber"); break; case MSN_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupMsn", 1)) - SectName = _T("Client Icons/MSN"); + return _T("Client Icons/MSN"); break; case AIM_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupAim", 1)) - SectName = _T("Client Icons/AIM"); + return _T("Client Icons/AIM"); break; case YAHOO_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupYahoo", 1)) - SectName = _T("Client Icons/Yahoo"); + return _T("Client Icons/Yahoo"); break; case IRC_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupIrc", 1)) - SectName = _T("Client Icons/IRC"); + return _T("Client Icons/IRC"); break; case VOIP_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupVoIP", 1)) - SectName = _T("Client Icons/VoIP"); + return _T("Client Icons/VoIP"); break; case SKYPE_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupSkype", 1)) - SectName = _T("Client Icons/Skype"); + return _T("Client Icons/Skype"); break; case GADU_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupGadu", 1)) - SectName = _T("Client Icons/Gadu-Gadu"); + return _T("Client Icons/Gadu-Gadu"); break; case PACKS_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupPacks", 1)) - SectName = _T("Client Icons/Miranda/Pack overlays"); + return _T("Client Icons/Miranda/Pack overlays"); break; case MRA_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupMail", 1)) - SectName = _T("Client Icons/Mail.Ru Agent"); + return _T("Client Icons/Mail.Ru Agent"); break; case OVER1_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupMiranda", 1)) - SectName = _T("Client Icons/Miranda/Overlays#1"); + return _T("Client Icons/Miranda/Overlays#1"); break; case SECURITY_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupOtherProtos", 1)) - SectName = _T("Client Icons/Overlays/Security"); + return _T("Client Icons/Overlays/Security"); break; case OTHER_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupOtherProtos", 1)) - SectName = _T("Client Icons/Other"); + return _T("Client Icons/Other"); break; case OVER2_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupMiranda", 1)) - SectName = _T("Client Icons/Miranda/Overlays#2"); + return _T("Client Icons/Miranda/Overlays#2"); break; case PLATFORM_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupOtherProtos", 1)) - SectName = _T("Client Icons/Overlays/Platform"); + return _T("Client Icons/Overlays/Platform"); break; case WEATHER_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupWeather", 1)) - SectName = _T("Client Icons/Weather"); + return _T("Client Icons/Weather"); break; case RSS_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupRSS", 1)) - SectName = _T("Client Icons/RSS"); + return _T("Client Icons/RSS"); break; case QQ_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupQQ", 1)) - SectName = _T("Client Icons/QQ"); + return _T("Client Icons/QQ"); break; case TLEN_CASE: if (DBGetContactSettingByte(NULL, "Finger", "GroupTlen", 1)) - SectName = _T("Client Icons/Tlen"); + return _T("Client Icons/Tlen"); break; default: - SectName = _T("Client Icons"); \ No newline at end of file + return _T("Client Icons"); \ No newline at end of file -- cgit v1.2.3