summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-01-20 18:26:53 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-01-20 18:26:53 +0000
commit44130e3c82ba02b17d32e92835edafdb17e25230 (patch)
treeb3eaf27be41f9420a04e865a39396313876c26b2 /protocols
parent18d6359313f9e9199eeb06f1d973d027ab784f43 (diff)
- Another portion of _T replacement (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3196 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r--protocols/GTalkExt/src/menu.cpp2
-rw-r--r--protocols/GTalkExt/src/notifications.cpp2
-rw-r--r--protocols/GTalkExt/src/options.cpp14
-rw-r--r--protocols/GTalkExt/src/options.h6
-rw-r--r--protocols/GTalkExt/src/tipper_items.cpp2
-rw-r--r--protocols/JabberG/src/jabber_xstatus.cpp156
6 files changed, 91 insertions, 91 deletions
diff --git a/protocols/GTalkExt/src/menu.cpp b/protocols/GTalkExt/src/menu.cpp
index bf81e0f5dd..0f04ae8d5c 100644
--- a/protocols/GTalkExt/src/menu.cpp
+++ b/protocols/GTalkExt/src/menu.cpp
@@ -26,7 +26,7 @@
#include "inbox.h"
static const LPSTR MS_GTALKEXT_OPENMAILBOX = SHORT_PLUGIN_NAME "/OpenMailbox";
-static const LPTSTR _T(OPEN_MAILBOX_ITEM_CAPTION) = _T("Open mailbox");
+static const LPTSTR _T(OPEN_MAILBOX_ITEM_CAPTION) = LPGENT("Open mailbox");
HANDLE hOpenMailboxService = 0;
HANDLE hOpenMailboxMenuItem = 0;
diff --git a/protocols/GTalkExt/src/notifications.cpp b/protocols/GTalkExt/src/notifications.cpp
index 9a1819a7f1..e9252aad7a 100644
--- a/protocols/GTalkExt/src/notifications.cpp
+++ b/protocols/GTalkExt/src/notifications.cpp
@@ -27,7 +27,7 @@
#include "inbox.h"
static const LPTSTR TEMP_WINDOW_CLASS_NAME = _T("AntiShittyFullscreenDetectionWindowClass");
-static const LPTSTR _T(NUMBER_EMAILS_MESSAGE) = _T("You've received an e-mail\n%s unread threads");
+static const LPTSTR _T(NUMBER_EMAILS_MESSAGE) = LPGENT("You've received an e-mail\n%s unread threads");
static const LPTSTR PLUGIN_DATA_PROP_NAME = _T("{DB5CE833-C3AC-4851-831C-DDEBD9FA0508}");
static const LPTSTR EVT_DELETED_HOOK_PROP_NAME = _T("{87CBD2BC-8806-413C-8FD5-1D61ABCA4AF8}");
diff --git a/protocols/GTalkExt/src/options.cpp b/protocols/GTalkExt/src/options.cpp
index 9bbd16a8f2..7f9291cd8f 100644
--- a/protocols/GTalkExt/src/options.cpp
+++ b/protocols/GTalkExt/src/options.cpp
@@ -25,8 +25,8 @@
static const LPTSTR ACCOUNT_PROP_NAME = _T("{BF447EBA-27AE-4DB7-893C-FC42A3F74D75}");
static const LPTSTR DIALOG_INITIALIZED_PROP_NAME = _T("{5EE59FE5-679A-4A29-B0A1-03092E7AC20E}");
-static const LPTSTR POPUPS_OPTIONS_GROUP = _T("PopUps");
-static const LPTSTR NETWORK_OPTIONS_GROUP = _T("Network");
+static const LPTSTR POPUPS_OPTIONS_GROUP = LPGENT("PopUps");
+static const LPTSTR NETWORK_OPTIONS_GROUP = LPGENT("Network");
static const LPSTR NOTIFY_SETTINGS_FROM_MOD_NAME = SHORT_PLUGIN_NAME ".NotifySettingsFromModName";
@@ -34,11 +34,11 @@ static const LPTSTR TEST_LETTER_SUBJECT = _T("Why C sucks");
static const LPTSTR TEST_LETTER_INBOX = _T("brickstrace@gmail.com [1]");
static const LPTSTR TEST_LETTER_SENDER = _T(" bems <bems@vingrad.ru>\n");
static const LPTSTR TEST_LETTER_SNIP =
- _T("* Primitive type system\n")
- _T("* No overloading\n")
- _T("* Limited possibility of data abstraction, polymorphism, subtyping and code reuse\n")
- _T("* No metaprogramming except preprocessor macros\n")
- _T("* No exceptions");
+ LPGENT("* Primitive type system\n")
+ LPGENT("* No overloading\n")
+ LPGENT("* Limited possibility of data abstraction, polymorphism, subtyping and code reuse\n")
+ LPGENT("* No metaprogramming except preprocessor macros\n")
+ LPGENT("* No exceptions");
HANDLE hOptionsHook = 0;
extern HINSTANCE hInst;
diff --git a/protocols/GTalkExt/src/options.h b/protocols/GTalkExt/src/options.h
index bc720e22ed..2b0c215dd3 100644
--- a/protocols/GTalkExt/src/options.h
+++ b/protocols/GTalkExt/src/options.h
@@ -23,9 +23,9 @@
#include "resources.h"
-static const LPTSTR MAIL_NOTIFICATIONS = _T("GMail notifications");
-static const LPTSTR FULL_NOTIFICATION_FORMAT = _T("subject\n %s\nfrom\n%s\n%s\n");
-static const LPTSTR SHORT_NOTIFICATION_FORMAT = _T("subject\n %s\nfrom\n%s");
+static const LPTSTR MAIL_NOTIFICATIONS = LPGENT("GMail notifications");
+static const LPTSTR FULL_NOTIFICATION_FORMAT = LPGENT("subject\n %s\nfrom\n%s\n%s\n");
+static const LPTSTR SHORT_NOTIFICATION_FORMAT = LPGENT("subject\n %s\nfrom\n%s");
static const LPSTR PSEUDOCONTACT_LINK = "GTalkExtNotifyContact";
static const LPSTR PSEUDOCONTACT_FLAG = "IsNotifyContact";
diff --git a/protocols/GTalkExt/src/tipper_items.cpp b/protocols/GTalkExt/src/tipper_items.cpp
index f09be10b32..5483f82aa3 100644
--- a/protocols/GTalkExt/src/tipper_items.cpp
+++ b/protocols/GTalkExt/src/tipper_items.cpp
@@ -42,7 +42,7 @@ static LPSTR TipperItemProps[MAX_TIPPER_ITEM_PROP] = {
static const LPSTR TIPPER_ITEMS_MOD_NAME = "Tipper_Items";
static const LPSTR TIPPER_ITEM_COUNT_SETTING = "DINumValues";
static const LPTSTR UNREAD_THREADS_RAW = _T("%raw:") _T(SHORT_PLUGIN_NAME) _T("/UnreadThreads%");
-static const LPTSTR UNREAD_THREADS_LABEL = _T("Unread threads:");
+static const LPTSTR UNREAD_THREADS_LABEL = LPGENT("Unread threads:");
void ShiftTipperSettings(LPSTR buff, int count, LPSTR format)
{
diff --git a/protocols/JabberG/src/jabber_xstatus.cpp b/protocols/JabberG/src/jabber_xstatus.cpp
index 9974f080ca..de76a2d27e 100644
--- a/protocols/JabberG/src/jabber_xstatus.cpp
+++ b/protocols/JabberG/src/jabber_xstatus.cpp
@@ -791,84 +791,84 @@ struct
}
static g_arrActivities[] =
{
- { "doing_chores", NULL, _T("Doing chores"), ACTIVITY_ICON(0, 0) },
- { NULL, "buying_groceries", _T("buying groceries"), ACTIVITY_ICON(0, 1) },
- { NULL, "cleaning", _T("cleaning"), ACTIVITY_ICON(0, 2) },
- { NULL, "cooking", _T("cooking"), ACTIVITY_ICON(0, 3) },
- { NULL, "doing_maintenance", _T("doing maintenance"), ACTIVITY_ICON(0, 4) },
- { NULL, "doing_the_dishes", _T("doing the dishes"), ACTIVITY_ICON(0, 5) },
- { NULL, "doing_the_laundry", _T("doing the laundry"), ACTIVITY_ICON(0, 6) },
- { NULL, "gardening", _T("gardening"), ACTIVITY_ICON(0, 7) },
- { NULL, "running_an_errand", _T("running an errand"), ACTIVITY_ICON(0, 8) },
- { NULL, "walking_the_dog", _T("walking the dog"), ACTIVITY_ICON(0, 9) },
- { "drinking", NULL, _T("Drinking"), ACTIVITY_ICON(1, 0) },
- { NULL, "having_a_beer", _T("having a beer"), ACTIVITY_ICON(1, 1) },
- { NULL, "having_coffee", _T("having coffee"), ACTIVITY_ICON(1, 2) },
- { NULL, "having_tea", _T("having tea"), ACTIVITY_ICON(1, 3) },
- { "eating", NULL, _T("Eating"), ACTIVITY_ICON(2, 0) },
- { NULL, "having_a_snack", _T("having a snack"), ACTIVITY_ICON(2, 1) },
- { NULL, "having_breakfast", _T("having breakfast"), ACTIVITY_ICON(2, 2) },
- { NULL, "having_dinner", _T("having dinner"), ACTIVITY_ICON(2, 3) },
- { NULL, "having_lunch", _T("having lunch"), ACTIVITY_ICON(2, 4) },
- { "exercising", NULL, _T("Exercising"), ACTIVITY_ICON(3, 0) },
- { NULL, "cycling", _T("cycling"), ACTIVITY_ICON(3, 1) },
- { NULL, "dancing", _T("dancing"), ACTIVITY_ICON(3, 2) },
- { NULL, "hiking", _T("hiking"), ACTIVITY_ICON(3, 3) },
- { NULL, "jogging", _T("jogging"), ACTIVITY_ICON(3, 4) },
- { NULL, "playing_sports", _T("playing sports"), ACTIVITY_ICON(3, 5) },
- { NULL, "running", _T("running"), ACTIVITY_ICON(3, 6) },
- { NULL, "skiing", _T("skiing"), ACTIVITY_ICON(3, 7) },
- { NULL, "swimming", _T("swimming"), ACTIVITY_ICON(3, 8) },
- { NULL, "working_out", _T("working out"), ACTIVITY_ICON(3, 9) },
- { "grooming", NULL, _T("Grooming"), ACTIVITY_ICON(4, 0) },
- { NULL, "at_the_spa", _T("at the spa"), ACTIVITY_ICON(4, 1) },
- { NULL, "brushing_teeth", _T("brushing teeth"), ACTIVITY_ICON(4, 2) },
- { NULL, "getting_a_haircut", _T("getting a haircut"), ACTIVITY_ICON(4, 3) },
- { NULL, "shaving", _T("shaving"), ACTIVITY_ICON(4, 4) },
- { NULL, "taking_a_bath", _T("taking a bath"), ACTIVITY_ICON(4, 5) },
- { NULL, "taking_a_shower", _T("taking a shower"), ACTIVITY_ICON(4, 6) },
- { "having_appointment", NULL, _T("Having appointment"), ACTIVITY_ICON(5, 0) },
- { "inactive", NULL, _T("Inactive"), ACTIVITY_ICON(6, 0) },
- { NULL, "day_off", _T("day off"), ACTIVITY_ICON(6, 1) },
- { NULL, "hanging_out", _T("hanging out"), ACTIVITY_ICON(6, 2) },
- { NULL, "hiding", _T("hiding"), ACTIVITY_ICON(6, 3) },
- { NULL, "on_vacation", _T("on vacation"), ACTIVITY_ICON(6, 4) },
- { NULL, "praying", _T("praying"), ACTIVITY_ICON(6, 5) },
- { NULL, "scheduled_holiday", _T("scheduled holiday"), ACTIVITY_ICON(6, 6) },
- { NULL, "sleeping", _T("sleeping"), ACTIVITY_ICON(6, 7) },
- { NULL, "thinking", _T("thinking"), ACTIVITY_ICON(6, 8) },
- { "relaxing", NULL, _T("Relaxing"), ACTIVITY_ICON(7, 0) },
- { NULL, "fishing", _T("fishing"), ACTIVITY_ICON(7, 1) },
- { NULL, "gaming", _T("gaming"), ACTIVITY_ICON(7, 2) },
- { NULL, "going_out", _T("going out"), ACTIVITY_ICON(7, 3) },
- { NULL, "partying", _T("partying"), ACTIVITY_ICON(7, 4) },
- { NULL, "reading", _T("reading"), ACTIVITY_ICON(7, 5) },
- { NULL, "rehearsing", _T("rehearsing"), ACTIVITY_ICON(7, 6) },
- { NULL, "shopping", _T("shopping"), ACTIVITY_ICON(7, 7) },
- { NULL, "smoking", _T("smoking"), ACTIVITY_ICON(7, 8) },
- { NULL, "socializing", _T("socializing"), ACTIVITY_ICON(7, 9) },
- { NULL, "sunbathing", _T("sunbathing"), ACTIVITY_ICON(7, 10) },
- { NULL, "watching_tv", _T("watching TV"), ACTIVITY_ICON(7, 11) },
- { NULL, "watching_a_movie", _T("watching a movie"), ACTIVITY_ICON(7, 12) },
- { "talking", NULL, _T("Talking"), ACTIVITY_ICON(8, 0) },
- { NULL, "in_real_life", _T("in real life"), ACTIVITY_ICON(8, 1) },
- { NULL, "on_the_phone", _T("on the phone"), ACTIVITY_ICON(8, 2) },
- { NULL, "on_video_phone", _T("on video phone"), ACTIVITY_ICON(8, 3) },
- { "traveling", NULL, _T("Traveling"), ACTIVITY_ICON(9, 0) },
- { NULL, "commuting", _T("commuting"), ACTIVITY_ICON(9, 1) },
- { NULL, "cycling", _T("cycling"), ACTIVITY_ICON(9, 2) },
- { NULL, "driving", _T("driving"), ACTIVITY_ICON(9, 3) },
- { NULL, "in_a_car", _T("in a car"), ACTIVITY_ICON(9, 4) },
- { NULL, "on_a_bus", _T("on a bus"), ACTIVITY_ICON(9, 5) },
- { NULL, "on_a_plane", _T("on a plane"), ACTIVITY_ICON(9, 6) },
- { NULL, "on_a_train", _T("on a train"), ACTIVITY_ICON(9, 7) },
- { NULL, "on_a_trip", _T("on a trip"), ACTIVITY_ICON(9, 8) },
- { NULL, "walking", _T("walking"), ACTIVITY_ICON(9, 9) },
- { "working", NULL, _T("Working"), ACTIVITY_ICON(10, 0) },
- { NULL, "coding", _T("coding"), ACTIVITY_ICON(10, 1) },
- { NULL, "in_a_meeting", _T("in a meeting"), ACTIVITY_ICON(10, 2) },
- { NULL, "studying", _T("studying"), ACTIVITY_ICON(10, 3) },
- { NULL, "writing", _T("writing"), ACTIVITY_ICON(10, 4) },
+ { "doing_chores", NULL, LPGENT("Doing chores"), ACTIVITY_ICON(0, 0) },
+ { NULL, "buying_groceries", LPGENT("buying groceries"), ACTIVITY_ICON(0, 1) },
+ { NULL, "cleaning", LPGENT("cleaning"), ACTIVITY_ICON(0, 2) },
+ { NULL, "cooking", LPGENT("cooking"), ACTIVITY_ICON(0, 3) },
+ { NULL, "doing_maintenance", LPGENT("doing maintenance"), ACTIVITY_ICON(0, 4) },
+ { NULL, "doing_the_dishes", LPGENT("doing the dishes"), ACTIVITY_ICON(0, 5) },
+ { NULL, "doing_the_laundry", LPGENT("doing the laundry"), ACTIVITY_ICON(0, 6) },
+ { NULL, "gardening", LPGENT("gardening"), ACTIVITY_ICON(0, 7) },
+ { NULL, "running_an_errand", LPGENT("running an errand"), ACTIVITY_ICON(0, 8) },
+ { NULL, "walking_the_dog", LPGENT("walking the dog"), ACTIVITY_ICON(0, 9) },
+ { "drinking", NULL, LPGENT("Drinking"), ACTIVITY_ICON(1, 0) },
+ { NULL, "having_a_beer", LPGENT("having a beer"), ACTIVITY_ICON(1, 1) },
+ { NULL, "having_coffee", LPGENT("having coffee"), ACTIVITY_ICON(1, 2) },
+ { NULL, "having_tea", LPGENT("having tea"), ACTIVITY_ICON(1, 3) },
+ { "eating", NULL, LPGENT("Eating"), ACTIVITY_ICON(2, 0) },
+ { NULL, "having_a_snack", LPGENT("having a snack"), ACTIVITY_ICON(2, 1) },
+ { NULL, "having_breakfast", LPGENT("having breakfast"), ACTIVITY_ICON(2, 2) },
+ { NULL, "having_dinner", LPGENT("having dinner"), ACTIVITY_ICON(2, 3) },
+ { NULL, "having_lunch", LPGENT("having lunch"), ACTIVITY_ICON(2, 4) },
+ { "exercising", NULL, LPGENT("Exercising"), ACTIVITY_ICON(3, 0) },
+ { NULL, "cycling", LPGENT("cycling"), ACTIVITY_ICON(3, 1) },
+ { NULL, "dancing", LPGENT("dancing"), ACTIVITY_ICON(3, 2) },
+ { NULL, "hiking", LPGENT("hiking"), ACTIVITY_ICON(3, 3) },
+ { NULL, "jogging", LPGENT("jogging"), ACTIVITY_ICON(3, 4) },
+ { NULL, "playing_sports", LPGENT("playing sports"), ACTIVITY_ICON(3, 5) },
+ { NULL, "running", LPGENT("running"), ACTIVITY_ICON(3, 6) },
+ { NULL, "skiing", LPGENT("skiing"), ACTIVITY_ICON(3, 7) },
+ { NULL, "swimming", LPGENT("swimming"), ACTIVITY_ICON(3, 8) },
+ { NULL, "working_out", LPGENT("working out"), ACTIVITY_ICON(3, 9) },
+ { "grooming", NULL, LPGENT("Grooming"), ACTIVITY_ICON(4, 0) },
+ { NULL, "at_the_spa", LPGENT("at the spa"), ACTIVITY_ICON(4, 1) },
+ { NULL, "brushing_teeth", LPGENT("brushing teeth"), ACTIVITY_ICON(4, 2) },
+ { NULL, "getting_a_haircut", LPGENT("getting a haircut"), ACTIVITY_ICON(4, 3) },
+ { NULL, "shaving", LPGENT("shaving"), ACTIVITY_ICON(4, 4) },
+ { NULL, "taking_a_bath", LPGENT("taking a bath"), ACTIVITY_ICON(4, 5) },
+ { NULL, "taking_a_shower", LPGENT("taking a shower"), ACTIVITY_ICON(4, 6) },
+ { "having_appointment", NULL, LPGENT("Having appointment"), ACTIVITY_ICON(5, 0) },
+ { "inactive", NULL, LPGENT("Inactive"), ACTIVITY_ICON(6, 0) },
+ { NULL, "day_off", LPGENT("day off"), ACTIVITY_ICON(6, 1) },
+ { NULL, "hanging_out", LPGENT("hanging out"), ACTIVITY_ICON(6, 2) },
+ { NULL, "hiding", LPGENT("hiding"), ACTIVITY_ICON(6, 3) },
+ { NULL, "on_vacation", LPGENT("on vacation"), ACTIVITY_ICON(6, 4) },
+ { NULL, "praying", LPGENT("praying"), ACTIVITY_ICON(6, 5) },
+ { NULL, "scheduled_holiday", LPGENT("scheduled holiday"), ACTIVITY_ICON(6, 6) },
+ { NULL, "sleeping", LPGENT("sleeping"), ACTIVITY_ICON(6, 7) },
+ { NULL, "thinking", LPGENT("thinking"), ACTIVITY_ICON(6, 8) },
+ { "relaxing", NULL, LPGENT("Relaxing"), ACTIVITY_ICON(7, 0) },
+ { NULL, "fishing", LPGENT("fishing"), ACTIVITY_ICON(7, 1) },
+ { NULL, "gaming", LPGENT("gaming"), ACTIVITY_ICON(7, 2) },
+ { NULL, "going_out", LPGENT("going out"), ACTIVITY_ICON(7, 3) },
+ { NULL, "partying", LPGENT("partying"), ACTIVITY_ICON(7, 4) },
+ { NULL, "reading", LPGENT("reading"), ACTIVITY_ICON(7, 5) },
+ { NULL, "rehearsing", LPGENT("rehearsing"), ACTIVITY_ICON(7, 6) },
+ { NULL, "shopping", LPGENT("shopping"), ACTIVITY_ICON(7, 7) },
+ { NULL, "smoking", LPGENT("smoking"), ACTIVITY_ICON(7, 8) },
+ { NULL, "socializing", LPGENT("socializing"), ACTIVITY_ICON(7, 9) },
+ { NULL, "sunbathing", LPGENT("sunbathing"), ACTIVITY_ICON(7, 10) },
+ { NULL, "watching_tv", LPGENT("watching TV"), ACTIVITY_ICON(7, 11) },
+ { NULL, "watching_a_movie", LPGENT("watching a movie"), ACTIVITY_ICON(7, 12) },
+ { "talking", NULL, LPGENT("Talking"), ACTIVITY_ICON(8, 0) },
+ { NULL, "in_real_life", LPGENT("in real life"), ACTIVITY_ICON(8, 1) },
+ { NULL, "on_the_phone", LPGENT("on the phone"), ACTIVITY_ICON(8, 2) },
+ { NULL, "on_video_phone", LPGENT("on video phone"), ACTIVITY_ICON(8, 3) },
+ { "traveling", NULL, LPGENT("Traveling"), ACTIVITY_ICON(9, 0) },
+ { NULL, "commuting", LPGENT("commuting"), ACTIVITY_ICON(9, 1) },
+ { NULL, "cycling", LPGENT("cycling"), ACTIVITY_ICON(9, 2) },
+ { NULL, "driving", LPGENT("driving"), ACTIVITY_ICON(9, 3) },
+ { NULL, "in_a_car", LPGENT("in a car"), ACTIVITY_ICON(9, 4) },
+ { NULL, "on_a_bus", LPGENT("on a bus"), ACTIVITY_ICON(9, 5) },
+ { NULL, "on_a_plane", LPGENT("on a plane"), ACTIVITY_ICON(9, 6) },
+ { NULL, "on_a_train", LPGENT("on a train"), ACTIVITY_ICON(9, 7) },
+ { NULL, "on_a_trip", LPGENT("on a trip"), ACTIVITY_ICON(9, 8) },
+ { NULL, "walking", LPGENT("walking"), ACTIVITY_ICON(9, 9) },
+ { "working", NULL, LPGENT("Working"), ACTIVITY_ICON(10, 0) },
+ { NULL, "coding", LPGENT("coding"), ACTIVITY_ICON(10, 1) },
+ { NULL, "in_a_meeting", LPGENT("in a meeting"), ACTIVITY_ICON(10, 2) },
+ { NULL, "studying", LPGENT("studying"), ACTIVITY_ICON(10, 3) },
+ { NULL, "writing", LPGENT("writing"), ACTIVITY_ICON(10, 4) },
{ NULL, NULL, NULL } // the end, don't delete this
};