diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-21 20:50:15 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-21 20:50:15 +0000 |
commit | 08b67ea2998735ea8cba6944fc68fe7d83d8117a (patch) | |
tree | 941e2b9a6a9e5eb7f335a170aca1daa99ae28109 /plugins/SimpleStatusMsg/src | |
parent | d0b98b87cdabd385d576fe40a693fab99dd1ef05 (diff) |
SimpleStatusMsg: vc2015 compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14619 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleStatusMsg/src')
-rw-r--r-- | plugins/SimpleStatusMsg/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SimpleStatusMsg/src/main.cpp b/plugins/SimpleStatusMsg/src/main.cpp index 72d7a95680..da01353b12 100644 --- a/plugins/SimpleStatusMsg/src/main.cpp +++ b/plugins/SimpleStatusMsg/src/main.cpp @@ -1777,13 +1777,13 @@ static int OnModulesLoaded(WPARAM, LPARAM) tr.flags = TRF_FREEMEM | TRF_FIELD | TRF_TCHAR | TRF_PARSEFUNC;
tr.tszTokenString = _T("winampsong");
tr.parseFunctionT = ParseWinampSong;
- tr.szHelpText = LPGEN("External Applications")"\t"LPGEN("retrieves song name of the song currently playing in Winamp (Simple Status Message compatible)");
+ tr.szHelpText = LPGEN("External Applications") "\t" LPGEN("retrieves song name of the song currently playing in Winamp (Simple Status Message compatible)");
CallService(MS_VARS_REGISTERTOKEN, 0, (LPARAM)&tr);
if (db_get_b(NULL, "SimpleStatusMsg", "ExclDateToken", 0) != 0) {
tr.tszTokenString = _T("date");
tr.parseFunctionT = ParseDate;
- tr.szHelpText = LPGEN("Miranda Related")"\t"LPGEN("get the date (Simple Status Message compatible)");
+ tr.szHelpText = LPGEN("Miranda Related") "\t" LPGEN("get the date (Simple Status Message compatible)");
CallService(MS_VARS_REGISTERTOKEN, 0, (LPARAM)&tr);
}
}
|