diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-19 16:19:57 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-19 16:19:57 +0000 |
commit | d55f17dea8734cfb458fd8fcbac684d141b181af (patch) | |
tree | 4c6d8ea7526b92f89c22b9d299bf01f8278072c8 /plugins/IEView | |
parent | 4a67a2dabbdf4aefbe729779f3be84177bbe9274 (diff) |
various quirks during MS_DB_TIME_TIMESTAMPTOSTRINGT calls
git-svn-id: http://svn.miranda-ng.org/main/trunk@14265 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView')
-rw-r--r-- | plugins/IEView/src/ScriverHTMLBuilder.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/IEView/src/ScriverHTMLBuilder.cpp b/plugins/IEView/src/ScriverHTMLBuilder.cpp index ec87e8877c..7e98f6a877 100644 --- a/plugins/IEView/src/ScriverHTMLBuilder.cpp +++ b/plugins/IEView/src/ScriverHTMLBuilder.cpp @@ -169,9 +169,7 @@ char *ScriverHTMLBuilder::timestampToString(DWORD dwFlags, time_t check, int mod mir_strcat(format, (dwFlags & SMF_LOG_SHOWSECONDS) ? "s" : "t");
}
if (format[0] != '\0') {
- // CallService(MS_DB_TIME_TIMESTAMPTOSTRINGT, check, (LPARAM) & dbtts);
CallService(MS_DB_TIME_TIMESTAMPTOSTRING, check, (LPARAM)& dbtts);
- //mir_tstrncat(szResult, str, 500);
mir_strncat(szResult, str, SIZEOF(szResult) - mir_strlen(szResult));
}
mir_strncpy(szResult, ptrA(mir_utf8encode(szResult)), 500);
|