summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Schümann <white06tiger@gmail.com>2015-02-17 15:09:12 +0000
committerRené Schümann <white06tiger@gmail.com>2015-02-17 15:09:12 +0000
commit4a1c02b8b1dde7e7ee3b347bdd82fb324637006b (patch)
tree6f52074595069a3857caeb3235d1a943f07bd166
parent876c06036bfc79ec02b920417aadbe91e808d9b4 (diff)
Tox: IPv4/IPv6 shouldn't be "translated" as it's a name
git-svn-id: http://svn.miranda-ng.org/main/trunk@12163 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/Tox/src/tox_options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_options.cpp b/protocols/Tox/src/tox_options.cpp
index 7c9bc10935..b56bd1d9cf 100644
--- a/protocols/Tox/src/tox_options.cpp
+++ b/protocols/Tox/src/tox_options.cpp
@@ -306,12 +306,12 @@ INT_PTR CALLBACK ToxNodesOptionsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR
lvc.fmt = LVCFMT_LEFT;
lvc.iSubItem = 0;
- lvc.pszText = Translate("IPv4");
+ lvc.pszText = "IPv4";
lvc.cx = 100;
SendMessage(hwndList, LVM_INSERTCOLUMNA, 0, (LPARAM)&lvc);
lvc.iSubItem = 1;
- lvc.pszText = Translate("IPv6");
+ lvc.pszText = "IPv6";
lvc.cx = 100;
SendMessage(hwndList, LVM_INSERTCOLUMNA, 1, (LPARAM)&lvc);