diff options
author | George Hazan <george.hazan@gmail.com> | 2016-02-25 13:36:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-02-25 13:36:37 +0000 |
commit | 42095fb5cb7228f9dfb94965988029fd7f47b793 (patch) | |
tree | 6185ec5d7450fb474ed80b0ce95d0d1c0e0b26a8 /plugins/Quotes/src/Log.cpp | |
parent | 8e891173c74ceaa0964f32be247f380fd5f8bcd1 (diff) |
Quotes: major code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@16335 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Quotes/src/Log.cpp')
-rw-r--r-- | plugins/Quotes/src/Log.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/Quotes/src/Log.cpp b/plugins/Quotes/src/Log.cpp index a9ffb93389..fea13ef91b 100644 --- a/plugins/Quotes/src/Log.cpp +++ b/plugins/Quotes/src/Log.cpp @@ -25,19 +25,8 @@ namespace if (file.good())
{
TCHAR szTime[20];
- // TCHAR sz[10000+1];
_tstrtime_s(szTime);
file << szTime << _T(" ================================>\n") << rsMsg << _T("\n\n");
-
- // size_t cBytes = rsMsg.size();
- // const TCHAR* p = rsMsg.c_str();
- // for(size_t c = 0;c < cBytes;c += 10000,p+=10000)
- // {
- // _tcsncpy_s(sz,p,10000);
- // file << sz;
- // }
- //
- // file << "\n\n";
}
}
}
|