From 1dad958015778d3486838bf3c93fff1793aa5406 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 22 Sep 2013 13:55:39 +0000 Subject: code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@6182 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/BasicHistory/src/TxtExport.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/BasicHistory/src/TxtExport.cpp') diff --git a/plugins/BasicHistory/src/TxtExport.cpp b/plugins/BasicHistory/src/TxtExport.cpp index a5ca8afddf..4009026b14 100644 --- a/plugins/BasicHistory/src/TxtExport.cpp +++ b/plugins/BasicHistory/src/TxtExport.cpp @@ -29,7 +29,7 @@ void TxtExport::WriteHeader(const std::wstring &fileName, const std::wstring &fi TCHAR* start = TranslateT("###"); EXP_FILE << start << "\n" << start << _T(" ") << TranslateT("History Log") << _T("\n"); EXP_FILE << start << _T(" ") << myName; - if(proto1.length() || myId.length()) + if (proto1.length() || myId.length()) { EXP_FILE << _T(" (") << proto1 << _T(": ") << myId << _T(") - "); } @@ -39,7 +39,7 @@ void TxtExport::WriteHeader(const std::wstring &fileName, const std::wstring &fi } EXP_FILE << name1; - if(proto1.length() || id1.length()) + if (proto1.length() || id1.length()) { EXP_FILE << _T(" (") << proto1 << _T(": ") << id1 << _T(")\n"); } -- cgit v1.2.3