diff options
Diffstat (limited to 'protocols/ICQCorp/src')
-rw-r--r-- | protocols/ICQCorp/src/protocol.cpp | 6 | ||||
-rw-r--r-- | protocols/ICQCorp/src/stdafx.cxx | 2 | ||||
-rw-r--r-- | protocols/ICQCorp/src/version.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/protocols/ICQCorp/src/protocol.cpp b/protocols/ICQCorp/src/protocol.cpp index 576bf6eb76..25fa81c8f2 100644 --- a/protocols/ICQCorp/src/protocol.cpp +++ b/protocols/ICQCorp/src/protocol.cpp @@ -1985,7 +1985,7 @@ void ICQ::addMessage(ICQUser *u, char *m, time_t t) Netlib_Logf(hNetlibUser, "message: %s\n", m);
DB::EventInfo dbei;
- dbei.timestamp = t;
+ dbei.iTimestamp = t;
dbei.pBlob = m;
ProtoChainRecvMsg(u->hContact, dbei);
}
@@ -1997,7 +1997,7 @@ void ICQ::addAwayMsg(ICQUser *u, char *m, unsigned long theSequence, time_t t) Netlib_Logf(hNetlibUser, "away msg: %s\n", m);
DB::EventInfo dbei;
- dbei.timestamp = t;
+ dbei.iTimestamp = t;
dbei.pBlob = m;
dbei.cbBlob = theSequence;
@@ -2019,7 +2019,7 @@ void ICQ::addFileReq(ICQUser *u, char *m, char *filename, unsigned long size, un DB::FILE_BLOB blob(transfer, filename, m);
DB::EventInfo dbei;
- dbei.timestamp = t;
+ dbei.iTimestamp = t;
blob.write(dbei);
CCSDATA ccs = { u->hContact, PSR_FILE, 0, (LPARAM)&dbei };
diff --git a/protocols/ICQCorp/src/stdafx.cxx b/protocols/ICQCorp/src/stdafx.cxx index 38d137df79..fa49c1adb3 100644 --- a/protocols/ICQCorp/src/stdafx.cxx +++ b/protocols/ICQCorp/src/stdafx.cxx @@ -1,5 +1,5 @@ /*
-Copyright (c) 2014-24 Miranda NG team (https://miranda-ng.org)
+Copyright (c) 2014-25 Miranda NG team (https://miranda-ng.org)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
diff --git a/protocols/ICQCorp/src/version.h b/protocols/ICQCorp/src/version.h index 0ac71978a9..30accda88b 100644 --- a/protocols/ICQCorp/src/version.h +++ b/protocols/ICQCorp/src/version.h @@ -10,4 +10,4 @@ #define __DESCRIPTION "ICQ corporate protocol support for Miranda NG."
#define __AUTHOR "Miranda NG team, Eugene Tarasenko"
#define __AUTHORWEB "https://miranda-ng.org/p/ICQCorp"
-#define __COPYRIGHT "© 2014-24 Miranda NG team, 2003-2005 Eugene Tarasenko"
+#define __COPYRIGHT "© 2014-25 Miranda NG team, 2003-2005 Eugene Tarasenko"
|