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/Options.cpp | |
parent | 88867d0ec9ebf4b3af4423b71778e837f1deb64f (diff) |
NewsAggregator: auth dialog moved to m_gui
Diffstat (limited to 'plugins/NewsAggregator/Src/Options.cpp')
-rw-r--r-- | plugins/NewsAggregator/Src/Options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewsAggregator/Src/Options.cpp b/plugins/NewsAggregator/Src/Options.cpp index 01b2262edc..f98fc6665e 100644 --- a/plugins/NewsAggregator/Src/Options.cpp +++ b/plugins/NewsAggregator/Src/Options.cpp @@ -773,7 +773,7 @@ void CFeedEditor::OnCheckFeed(CCtrlBase*) wchar_t *tszTitle = nullptr;
ptrW strfeedurl(m_feedurl.GetText());
if (strfeedurl || mir_wstrcmp(strfeedurl, L"http://") != 0 || mir_wstrcmp(strfeedurl, L"") != 0)
- tszTitle = (wchar_t*)CheckFeed(strfeedurl, m_hwnd);
+ tszTitle = (wchar_t*)CheckFeed(strfeedurl, this);
else
MessageBox(m_hwnd, TranslateT("Enter Feed URL"), TranslateT("Error"), MB_OK);
m_feedtitle.SetText(tszTitle);
|