diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-04 19:21:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-04 19:21:26 +0300 |
commit | e80684d7a2ad3afff40ec1c211fba92bb457ea4f (patch) | |
tree | 4e405124f0b2c0e30bf935de375c3c00f4fa917e /plugins/CrashDumper/src/utils.cpp | |
parent | b82860d36b5c9e09918fc7db671412b81457e8f6 (diff) |
CrashDumper:
- fixes #2043 (CrashDumper: add option to disable VI popup);
- massive cleaning of options-related code;
- version bump
Diffstat (limited to 'plugins/CrashDumper/src/utils.cpp')
-rw-r--r-- | plugins/CrashDumper/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CrashDumper/src/utils.cpp b/plugins/CrashDumper/src/utils.cpp index c2908ff458..8b59693f01 100644 --- a/plugins/CrashDumper/src/utils.cpp +++ b/plugins/CrashDumper/src/utils.cpp @@ -50,7 +50,7 @@ void GetISO8061Time(SYSTEMTIME *stLocal, LPTSTR lpszString, DWORD dwSize) GetLocalTime(stLocal);
}
- if (clsdates) {
+ if (g_plugin.bClassicDates) {
GetDateFormat(LOCALE_INVARIANT, 0, stLocal, L"d MMM yyyy", lpszString, dwSize);
int dlen = (int)mir_wstrlen(lpszString);
GetTimeFormat(LOCALE_INVARIANT, 0, stLocal, L" H:mm:ss", lpszString + dlen, dwSize - dlen);
|