summaryrefslogtreecommitdiff
path: root/plugins/MyDetails
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2013-03-26 20:44:40 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2013-03-26 20:44:40 +0000
commita7ad2ddfd4115ca2729ec68632dd257c1d58a6a1 (patch)
tree2a376df9af5c4f97420951e9c3e7f002ff60fd63 /plugins/MyDetails
parent0ff5363fc3c387364947df74da71790eb0c4c1a3 (diff)
cosmetics
git-svn-id: http://svn.miranda-ng.org/main/trunk@4206 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails')
-rw-r--r--plugins/MyDetails/src/frame.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MyDetails/src/frame.cpp b/plugins/MyDetails/src/frame.cpp
index 795d3b1a48..f0fdf59795 100644
--- a/plugins/MyDetails/src/frame.cpp
+++ b/plugins/MyDetails/src/frame.cpp
@@ -67,7 +67,7 @@ HFONT hFont[NUM_FONTS];
COLORREF font_colour[NUM_FONTS];
// Defaults
-TCHAR *font_names[] = { LPGENT("Nickname"), LPGENT("Protocol"), LPGENT("Status"), LPGENT("Status Message"), LPGENT("Listening To") };
+TCHAR *font_names[] = { LPGENT("Nickname"), LPGENT("Account"), LPGENT("Status"), LPGENT("Status Message"), LPGENT("Listening To") };
char font_sizes[] = { 13, 8, 8, 8, 8 };
BYTE font_styles[] = { DBFONTF_BOLD, 0, 0, DBFONTF_ITALIC, DBFONTF_ITALIC };
COLORREF font_colors[] = { RGB(0,0,0), RGB(0,0,0), RGB(0,0,0), RGB(150,150,150), RGB(150,150,150) };
@@ -2142,9 +2142,9 @@ LRESULT CALLBACK FrameWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar
else if (lpnmhdr->hwndFrom == data->listening_to_tt_hwnd)
lpttd->lpszText = proto->listening_to;
else if (lpnmhdr->hwndFrom == data->next_proto_tt_hwnd)
- lpttd->lpszText = TranslateT("Show next protocol");
+ lpttd->lpszText = TranslateT("Show next acccount");
else if (lpnmhdr->hwndFrom == data->prev_proto_tt_hwnd)
- lpttd->lpszText = TranslateT("Show previous protocol");
+ lpttd->lpszText = TranslateT("Show previous account");
return 0;
}