diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-06-30 16:27:11 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-06-30 16:27:11 +0000 |
commit | 00e955153e8716fa37b02304770fdd69b74d0e92 (patch) | |
tree | 561980f1d64e2ac44b0c0ec9b6411617b724b3a7 /plugins/VersionInfo/src/CPlugin.cpp | |
parent | 54e2bdf48df375e4bb80e010eb045d6e967a934d (diff) |
VI report format adopted to CrashDumper
git-svn-id: http://svn.miranda-ng.org/main/trunk@5195 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/VersionInfo/src/CPlugin.cpp')
-rw-r--r-- | plugins/VersionInfo/src/CPlugin.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/VersionInfo/src/CPlugin.cpp b/plugins/VersionInfo/src/CPlugin.cpp index 8e1a57399b..00f6949d38 100644 --- a/plugins/VersionInfo/src/CPlugin.cpp +++ b/plugins/VersionInfo/src/CPlugin.cpp @@ -20,9 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "common.h"
-const int cPLUGIN_UUID_MARK = 4;
-TCHAR PLUGIN_UUID_MARK[cPLUGIN_UUID_MARK];
-
#define PLUGIN_UNCERTAIN_MARK "?"
#define RJUST 70
@@ -118,7 +115,7 @@ std::tstring CPlugin::getInformations(DWORD flags, TCHAR *szHighlightHeader, TCH UUIDToString(pluginID, aux, SIZEOF(aux));
lpzInformations = aux;
}
- else lpzInformations = (IsUUIDNull(pluginID)) ? _T(" ") : PLUGIN_UUID_MARK;
+ else lpzInformations = _T(" ");
lpzInformations += std::tstring(_T(" ") + lpzFileName + _T(" v.") + szHighlightHeader + lpzVersion + szHighlightFooter + _T(" [") + lpzTimestamp + _T("] - ") + lpzShortName);
if (lpzUnicodeInfo.size() > 0)
|