diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-23 21:29:38 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-23 21:29:38 +0000 |
commit | 43c7844c7f6c313e29ab65727fe12a8c297f2048 (patch) | |
tree | 5648e144b0d415df500412817149575193ac4453 /src/modules/plugins | |
parent | e632e691257a7d1ac4b78e5c49def730847333c4 (diff) |
- small fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@3261 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/plugins')
-rw-r--r-- | src/modules/plugins/pluginopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/plugins/pluginopts.cpp b/src/modules/plugins/pluginopts.cpp index 524a9aee60..3a0e5b7163 100644 --- a/src/modules/plugins/pluginopts.cpp +++ b/src/modules/plugins/pluginopts.cpp @@ -390,7 +390,7 @@ INT_PTR CALLBACK DlgPluginOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar if (hdr->hdr.code == PSN_APPLY) {
bool needRestart = false;
TCHAR bufRestart[1024];
- int bufLen = mir_sntprintf(bufRestart, SIZEOF(bufRestart), _T("%s"), TranslateT("Miranda NG must be restarted to apply changes for these plugins:\n"));
+ int bufLen = mir_sntprintf(bufRestart, SIZEOF(bufRestart), _T("%s\n"), TranslateT("Miranda NG must be restarted to apply changes for these plugins:"));
HWND hwndList = GetDlgItem(hwndDlg, IDC_PLUGLIST);
TCHAR buf[1024];
|