diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-07-06 19:11:45 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-07-06 19:11:45 +0000 |
commit | 89099ed8606d8fb719ae30cd7ca5376b0d4b74de (patch) | |
tree | f289ef3b36b4b466262b5fae63ebee2206eaf9a8 /plugins/BASS_interface/src | |
parent | b2260e2212bbc9dbca1e3f183ae5470267729864 (diff) |
frame name should not be translated in database
git-svn-id: http://svn.miranda-ng.org/main/trunk@14501 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BASS_interface/src')
-rw-r--r-- | plugins/BASS_interface/src/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/BASS_interface/src/Main.cpp b/plugins/BASS_interface/src/Main.cpp index 1c3dbe883b..e63e2ddd91 100644 --- a/plugins/BASS_interface/src/Main.cpp +++ b/plugins/BASS_interface/src/Main.cpp @@ -459,7 +459,7 @@ void CreateFrame() WS_CHILD | WS_CLIPCHILDREN, 0, 0, 10, 10, pcli->hwndContactList, NULL, hInst, NULL);
CLISTFrame Frame = { sizeof(CLISTFrame) };
- Frame.tname = TranslateT("Bass Interface");
+ Frame.tname = _T("Bass Interface");
Frame.hWnd = hwnd_plugin;
Frame.align = alBottom;
Frame.Flags = F_TCHAR | F_VISIBLE | F_SHOWTB | F_SHOWTBTIP;
|