summaryrefslogtreecommitdiff
path: root/plugins/CrashDumper/src/utils.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-09-04 19:21:26 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-09-04 19:21:26 +0300
commite80684d7a2ad3afff40ec1c211fba92bb457ea4f (patch)
tree4e405124f0b2c0e30bf935de375c3c00f4fa917e /plugins/CrashDumper/src/utils.cpp
parentb82860d36b5c9e09918fc7db671412b81457e8f6 (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.cpp2
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);