diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-28 17:16:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-28 17:16:00 +0000 |
commit | 124ac1146c6b240fa00495b0023597877395090e (patch) | |
tree | 1fe2e45e3eb694e512bbabfa3380dc4b266983da /plugins/Svc_vi/CVersionInfo.cpp | |
parent | 9695e5c27713ed60055ba0e0569a9716d8f97ec5 (diff) |
added mark 'UTC' to the module creation time
git-svn-id: http://svn.miranda-ng.org/main/trunk@220 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Svc_vi/CVersionInfo.cpp')
-rw-r--r-- | plugins/Svc_vi/CVersionInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Svc_vi/CVersionInfo.cpp b/plugins/Svc_vi/CVersionInfo.cpp index f8b89d81de..b3b2825922 100644 --- a/plugins/Svc_vi/CVersionInfo.cpp +++ b/plugins/Svc_vi/CVersionInfo.cpp @@ -165,7 +165,7 @@ bool CVersionInfo::GetMirandaVersion() TCHAR time[128], date[128];
GetModuleTimeStamp(date, time);
- lpzBuildTime = std::tstring(time) + _T(" on ") + std::tstring(date);
+ lpzBuildTime = std::tstring(time) + _T(" (UTC) on ") + std::tstring(date);
return TRUE;
}
|