diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-08-05 14:11:12 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-08-05 14:11:12 +0000 |
commit | 18a381e82a1fb4df42659c53d1b7b1804688049a (patch) | |
tree | 29930f92d26a8f6aaa8e54679e09e26f861f9436 /plugins/TipperYM | |
parent | 64453022c1209aea6ffc534cee4e0f7b52535b76 (diff) |
'xStatus' correction
git-svn-id: http://svn.miranda-ng.org/main/trunk@10071 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TipperYM')
-rw-r--r-- | plugins/TipperYM/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/TipperYM/src/popwin.cpp | 4 | ||||
-rw-r--r-- | plugins/TipperYM/src/preset_items.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/TipperYM/res/resource.rc b/plugins/TipperYM/res/resource.rc index 51c52e03d4..702bf96419 100644 --- a/plugins/TipperYM/res/resource.rc +++ b/plugins/TipperYM/res/resource.rc @@ -172,7 +172,7 @@ BEGIN "Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,123,273,10
CONTROL "Disable in invisible status",IDC_CHK_DISABLEINVISIBLE,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,27,138,258,10
- CONTROL "Retrieve XStatus details if auto-retrieve is disabled",IDC_CHK_RETRIEVEXSTATUS,
+ CONTROL "Retrieve xStatus details if auto-retrieve is disabled",IDC_CHK_RETRIEVEXSTATUS,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,153,273,10
GROUPBOX "Status bar and tray tooltip",IDC_STATIC,7,176,284,46
CONTROL "Limit status messages in status bar and tray tooltips to:",IDC_CHK_LIMITMSG,
diff --git a/plugins/TipperYM/src/popwin.cpp b/plugins/TipperYM/src/popwin.cpp index 2568132110..192a451d0d 100644 --- a/plugins/TipperYM/src/popwin.cpp +++ b/plugins/TipperYM/src/popwin.cpp @@ -152,7 +152,7 @@ LRESULT CALLBACK PopupWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa swzAdvTitle = GetProtoExtraStatusTitle(pwd->clcit.szProto);
if (swzAdvTitle) {
StripBBCodesInPlace(swzAdvTitle);
- AddRow(pwd, TranslateT("XStatus:"), swzAdvTitle, pwd->clcit.szProto, true, false, true);
+ AddRow(pwd, TranslateT("xStatus:"), swzAdvTitle, pwd->clcit.szProto, true, false, true);
}
// xstatus message
@@ -1567,7 +1567,7 @@ LRESULT CALLBACK PopupWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa swzAdvTitle = GetProtoExtraStatusTitle(pa->szModuleName);
if (swzAdvTitle) {
StripBBCodesInPlace(swzAdvTitle);
- AddRow(pwd, TranslateT("XStatus:"), swzAdvTitle, pa->szModuleName, true, false, false);
+ AddRow(pwd, TranslateT("xStatus:"), swzAdvTitle, pa->szModuleName, true, false, false);
mir_free(swzAdvTitle);
}
diff --git a/plugins/TipperYM/src/preset_items.cpp b/plugins/TipperYM/src/preset_items.cpp index 38ac8e1be2..ba5f179f4d 100644 --- a/plugins/TipperYM/src/preset_items.cpp +++ b/plugins/TipperYM/src/preset_items.cpp @@ -40,8 +40,8 @@ PRESETITEM presetItems[] = "status", LPGENT("Status"), LPGENT("Status:"), _T("%Status%"), "status", 0, 0,
"statusmsg", LPGENT("Status message"), LPGENT("Status message:"), _T("%sys:status_msg%"), 0, 0, 0,
"time", LPGENT("Contact time"), LPGENT("Time:"), _T("%sys:time%"), 0, 0, 0,
- "xtitle", LPGENT("XStatus title"), LPGENT("XStatus title:"), _T("%xsname%"), "xname", 0, 0,
- "xtext", LPGENT("XStatus text"), LPGENT("XStatus text:"), _T("%raw:/XStatusMsg%"), 0, 0, 0,
+ "xtitle", LPGENT("xStatus title"), LPGENT("xStatus title:"), _T("%xsname%"), "xname", 0, 0,
+ "xtext", LPGENT("xStatus text"), LPGENT("xStatus text:"), _T("%raw:/XStatusMsg%"), 0, 0, 0,
"acttitle", LPGENT("[jabber.dll] Activity title"), LPGENT("Activity title:"), _T("%raw:AdvStatus/?dbsetting(%subject%,Protocol,p)/activity/title%"), 0, 0, 0,
"acttext", LPGENT("[jabber.dll] Activity text"), LPGENT("Activity text:"), _T("%raw:AdvStatus/?dbsetting(%subject%,Protocol,p)/activity/text%"), 0, 0, 0,
"lastseentime", LPGENT("[seenplugin.dll] Last seen time"), LPGENT("Last seen time:"), _T("%lastseen_date% @ %lastseen_time%"), "lsdate", "lstime", 0,
|