summaryrefslogtreecommitdiff
path: root/utilities.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2013-01-06 18:42:52 +0200
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2013-01-06 18:42:52 +0200
commit0ca37041442b35763a3761aad47965a2c119f932 (patch)
tree4db224d161b34e554300d495db9cec77cb9b5cb3 /utilities.h
parent6234ae30aedee812febea6ded7c028448011746a (diff)
merged with miranda_ng main repo
Diffstat (limited to 'utilities.h')
-rwxr-xr-xutilities.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/utilities.h b/utilities.h
index 739495a..508a241 100755
--- a/utilities.h
+++ b/utilities.h
@@ -43,7 +43,7 @@ public:
{
eventType = EVENTTYPE_MESSAGE;
flags = 0;
- timestamp = 0;
+ timestamp = time(0);
szModule = 0;
cbSize = 0;
cbBlob = strlen(msg)+1;
@@ -81,7 +81,7 @@ public:
eventType = type;
else
eventType = EVENTTYPE_MESSAGE;
- timestamp = 0;
+ timestamp = time(0);
szModule = 0;
cbSize = 0;
}
@@ -104,5 +104,6 @@ void fix_line_term(std::string &s);
void fix_line_term(std::wstring &s);
void strip_line_term(std::wstring &s);
void strip_line_term(std::string &s);
+void strip_tags(std::wstring &s);
#endif