diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2018-03-09 18:00:37 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2018-03-09 18:00:37 +0300 |
commit | 1f71ad2141a4c7d41f806cc4cbaa25cbf321dd73 (patch) | |
tree | eba3de4755c5b49a7bee77eff8d9abde9bf1e5f2 /plugins/NewsAggregator/Src/stdafx.h | |
parent | 88867d0ec9ebf4b3af4423b71778e837f1deb64f (diff) |
NewsAggregator: auth dialog moved to m_gui
Diffstat (limited to 'plugins/NewsAggregator/Src/stdafx.h')
-rw-r--r-- | plugins/NewsAggregator/Src/stdafx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/NewsAggregator/Src/stdafx.h b/plugins/NewsAggregator/Src/stdafx.h index cc1978b908..213e858cc6 100644 --- a/plugins/NewsAggregator/Src/stdafx.h +++ b/plugins/NewsAggregator/Src/stdafx.h @@ -128,15 +128,15 @@ void CALLBACK timerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime void CALLBACK timerProc2(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime);
bool IsMyContact(MCONTACT hContact);
-void GetNewsData(wchar_t *szUrl, char **szData, MCONTACT hContact, HWND hwndDlg);
+void GetNewsData(wchar_t *szUrl, char **szData, MCONTACT hContact, CFeedEditor *pEditDlg);
time_t __stdcall DateToUnixTime(const wchar_t *stamp, bool FeedType);
void CheckCurrentFeed(MCONTACT hContact);
void CheckCurrentFeedAvatar(MCONTACT hContact);
-LPCTSTR CheckFeed(wchar_t* tszURL, HWND hwndDlg);
+LPCTSTR CheckFeed(wchar_t* tszURL, CFeedEditor *pEditDlg);
void UpdateMenu(bool State);
LPCTSTR ClearText(CMStringW &value, const wchar_t *message);
bool DownloadFile(LPCTSTR tszURL, LPCTSTR tszLocal);
-void CreateAuthString(char *auth, MCONTACT hContact, HWND hwndDlg);
+void CreateAuthString(char *auth, MCONTACT hContact, CFeedEditor *pDlg);
INT_PTR CALLBACK AuthenticationProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
MCONTACT GetContactByNick(const wchar_t *nick);
MCONTACT GetContactByURL(const wchar_t *url);
|