diff options
Diffstat (limited to 'protocols/NewsAggregator/Src')
-rw-r--r-- | protocols/NewsAggregator/Src/CheckFeed.cpp | 4 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/ExportFeed.cpp | 2 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/FeedEditor.cpp | 2 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/ImportFeed.cpp | 2 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/stdafx.cxx | 2 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/version.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/protocols/NewsAggregator/Src/CheckFeed.cpp b/protocols/NewsAggregator/Src/CheckFeed.cpp index b15724266c..954760298d 100644 --- a/protocols/NewsAggregator/Src/CheckFeed.cpp +++ b/protocols/NewsAggregator/Src/CheckFeed.cpp @@ -171,7 +171,7 @@ static void XmlToMsg(MCONTACT hContact, CMStringW &title, CMStringW &link, CMStr db_event_get(hDbEvent, &olddbei); // there's no need to look for the elder events - if (stamp > 0 && olddbei.timestamp < (uint32_t)stamp) + if (stamp > 0 && olddbei.getUnixtime() < (uint32_t)stamp) break; if ((int)mir_strlen((char*)olddbei.pBlob) == cbOrigLen && !mir_strcmp((char*)olddbei.pBlob, pszTemp)) { @@ -188,7 +188,7 @@ static void XmlToMsg(MCONTACT hContact, CMStringW &title, CMStringW &link, CMStr T2Utf pszMessage(message); DB::EventInfo dbei; - dbei.timestamp = (uint32_t)stamp; + dbei.iTimestamp = (uint32_t)stamp; dbei.pBlob = pszMessage; ProtoChainRecvMsg(hContact, dbei); } diff --git a/protocols/NewsAggregator/Src/ExportFeed.cpp b/protocols/NewsAggregator/Src/ExportFeed.cpp index 50c6576882..48ee86d1e2 100644 --- a/protocols/NewsAggregator/Src/ExportFeed.cpp +++ b/protocols/NewsAggregator/Src/ExportFeed.cpp @@ -1,5 +1,5 @@ /* -Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org) +Copyright (C) 2012-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/NewsAggregator/Src/FeedEditor.cpp b/protocols/NewsAggregator/Src/FeedEditor.cpp index f3130d7b8d..a4ddba3c10 100644 --- a/protocols/NewsAggregator/Src/FeedEditor.cpp +++ b/protocols/NewsAggregator/Src/FeedEditor.cpp @@ -1,5 +1,5 @@ /* -Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org) +Copyright (C) 2012-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/NewsAggregator/Src/ImportFeed.cpp b/protocols/NewsAggregator/Src/ImportFeed.cpp index 5993e76cd1..31e228b3b1 100644 --- a/protocols/NewsAggregator/Src/ImportFeed.cpp +++ b/protocols/NewsAggregator/Src/ImportFeed.cpp @@ -1,5 +1,5 @@ /* -Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org) +Copyright (C) 2012-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/NewsAggregator/Src/stdafx.cxx b/protocols/NewsAggregator/Src/stdafx.cxx index 13f28e1314..f111565f38 100644 --- a/protocols/NewsAggregator/Src/stdafx.cxx +++ b/protocols/NewsAggregator/Src/stdafx.cxx @@ -1,5 +1,5 @@ /*
-Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org)
+Copyright (C) 2012-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/NewsAggregator/Src/version.h b/protocols/NewsAggregator/Src/version.h index 50a46495de..656d6f43a2 100644 --- a/protocols/NewsAggregator/Src/version.h +++ b/protocols/NewsAggregator/Src/version.h @@ -10,4 +10,4 @@ #define __DESCRIPTION "RSS/Atom news aggregator."
#define __AUTHOR "Mataes, FREAK_THEMIGHTY"
#define __AUTHORWEB "https://miranda-ng.org/p/NewsAggregator"
-#define __COPYRIGHT "© 2012-24 Mataes, FREAK_THEMIGHTY"
+#define __COPYRIGHT "© 2012-25 Mataes, FREAK_THEMIGHTY"
|