summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Exchange/src/MirandaExchange.cpp4
-rw-r--r--plugins/FavContacts/src/menu.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Exchange/src/MirandaExchange.cpp b/plugins/Exchange/src/MirandaExchange.cpp
index ba0bc86861..0eebaae966 100644
--- a/plugins/Exchange/src/MirandaExchange.cpp
+++ b/plugins/Exchange/src/MirandaExchange.cpp
@@ -593,7 +593,6 @@ HRESULT CMirandaExchange::isMapiSessionOK( LPMAPISESSION )
HRESULT CMirandaExchange::CheckForNewMails( int &nNewMails)
{
- HRESULT hRes;
if ( m_nNumberOfHeaders>0 && NULL != m_HeadersKeeper )
{
for( UINT i=0; i<m_nNumberOfHeaders; i++ )
@@ -610,6 +609,7 @@ HRESULT CMirandaExchange::CheckForNewMails( int &nNewMails)
m_nNumberOfHeaders = 0;
+ HRESULT hRes;
try
{
if ( m_lpMAPISession != NULL && (isMapiSessionOK(m_lpMAPISession)== S_OK) && m_lpInbox != NULL && m_bFolderInboxOK )
@@ -634,7 +634,7 @@ HRESULT CMirandaExchange::CheckForNewMails( int &nNewMails)
}
catch (...)
{
-
+ hRes = E_FAIL;
}
return hRes;
diff --git a/plugins/FavContacts/src/menu.cpp b/plugins/FavContacts/src/menu.cpp
index 903590bd88..ae4e4ab87f 100644
--- a/plugins/FavContacts/src/menu.cpp
+++ b/plugins/FavContacts/src/menu.cpp
@@ -201,7 +201,7 @@ static BOOL sttDrawItem_Contact(LPDRAWITEMSTRUCT lpdis, Options *options = NULL)
if (options->bSysColors) {
FillRect(hdcTemp, &lpdis->rcItem, GetSysColorBrush(COLOR_HIGHLIGHT));
clBack = GetSysColor(COLOR_HIGHLIGHT);
- clLine1 = GetSysColor(COLOR_HIGHLIGHTTEXT);
+ clLine1 = clLine2 = GetSysColor(COLOR_HIGHLIGHTTEXT);
}
else {
clBack = g_Options.clBackSel;
@@ -213,7 +213,7 @@ static BOOL sttDrawItem_Contact(LPDRAWITEMSTRUCT lpdis, Options *options = NULL)
if (options->bSysColors) {
FillRect(hdcTemp, &lpdis->rcItem, GetSysColorBrush(COLOR_MENU));
clBack = GetSysColor(COLOR_MENU);
- clLine1 = GetSysColor(COLOR_MENUTEXT);
+ clLine1 = clLine2 = GetSysColor(COLOR_MENUTEXT);
}
else {
clBack = g_Options.clBack;