diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-08-28 17:50:31 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-08-28 17:50:31 +0000 |
commit | 4ec1e6ac7076575a1c12718ce00510295ee16a05 (patch) | |
tree | 1b3044f4e7362163786560c2f844691cc4c5d27c /protocols/NewsAggregator/Src/Update.cpp | |
parent | 407f90c1822b8a88f644574532f4bc30d721a616 (diff) |
NewsAggregator:
fixed not checking feed at start when time set at 0
git-svn-id: http://svn.miranda-ng.org/main/trunk@1533 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/NewsAggregator/Src/Update.cpp')
-rw-r--r-- | protocols/NewsAggregator/Src/Update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/NewsAggregator/Src/Update.cpp b/protocols/NewsAggregator/Src/Update.cpp index f2f5ecf92a..0c2431e9a0 100644 --- a/protocols/NewsAggregator/Src/Update.cpp +++ b/protocols/NewsAggregator/Src/Update.cpp @@ -62,7 +62,7 @@ VOID CALLBACK timerProc2(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime) if (!Miranda_Terminated())
{
- CheckAllFeeds(0,0);
+ CheckAllFeeds(0, 1);
timerId = SetTimer(NULL, 0, 30000, (TIMERPROC)timerProc);
}
}
|