diff options
Diffstat (limited to 'plugins/BasicHistory/src/TxtExport.cpp')
-rw-r--r-- | plugins/BasicHistory/src/TxtExport.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/BasicHistory/src/TxtExport.cpp b/plugins/BasicHistory/src/TxtExport.cpp index 89df71c8b3..45874d7276 100644 --- a/plugins/BasicHistory/src/TxtExport.cpp +++ b/plugins/BasicHistory/src/TxtExport.cpp @@ -30,23 +30,15 @@ void TxtExport::WriteHeader(const std::wstring&, const std::wstring &filterName, EXP_FILE << start << "\n" << start << L" " << TranslateT("History Log") << L"\n";
EXP_FILE << start << L" " << myName;
if (proto1.length() || myId.length())
- {
EXP_FILE << L" (" << proto1 << L": " << myId << L") - ";
- }
else
- {
EXP_FILE << L" - ";
- }
EXP_FILE << name1;
if (proto1.length() || id1.length())
- {
EXP_FILE << L" (" << proto1 << L": " << id1 << L")\n";
- }
else
- {
EXP_FILE << L"\n";
- }
EXP_FILE << start << L" " << TranslateT("Filter:") << L" " << filterName << L"\n" << start << L"\n";
}
|