diff options
Diffstat (limited to 'protocols/NewsAggregator')
-rw-r--r-- | protocols/NewsAggregator/Src/Options.cpp | 4 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/stdafx.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/protocols/NewsAggregator/Src/Options.cpp b/protocols/NewsAggregator/Src/Options.cpp index c6e1967edc..9f902c52b2 100644 --- a/protocols/NewsAggregator/Src/Options.cpp +++ b/protocols/NewsAggregator/Src/Options.cpp @@ -880,9 +880,9 @@ bool COptionsMain::OnApply() if (mir_wstrcmp(dbNick, nick) == 0) { g_plugin.setByte(hContact, "CheckState", m_feeds.GetCheckState(i)); if (!m_feeds.GetCheckState(i)) - Clist_HideContact(hContact); + Contact_Hide(hContact); else - Clist_HideContact(hContact, false); + Contact_Hide(hContact, false); } } } diff --git a/protocols/NewsAggregator/Src/stdafx.h b/protocols/NewsAggregator/Src/stdafx.h index e2af12c08c..e583659595 100644 --- a/protocols/NewsAggregator/Src/stdafx.h +++ b/protocols/NewsAggregator/Src/stdafx.h @@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. // Miranda header files #include <newpluginapi.h> #include <m_clist.h> +#include <m_contacts.h> #include <m_langpack.h> #include <m_options.h> #include <m_protosvc.h> |