diff options
author | George Hazan <george.hazan@gmail.com> | 2016-06-13 12:37:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-06-13 12:37:22 +0000 |
commit | bfb6e607aa1c602e43267c5c43657c886bfad631 (patch) | |
tree | d37d11cb733b8524381dfa013ee4bd8338efa982 /protocols/JabberG/src/jabber_proto.h | |
parent | 4659cfc9c660e7c06af27ef44ee43e6f620fbd23 (diff) |
minor code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@16962 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 0cdc87a234..a594a451a4 100644 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -642,7 +642,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface void OnIqResultAdvancedSearch(HXML iqNode, CJabberIqInfo *pInfo);
void OnIqResultGetSearchFields(HXML iqNode, CJabberIqInfo *pInfo);
int SearchRenewFields(HWND hwndDlg, JabberSearchData * dat);
- void SearchDeleteFromRecent(const TCHAR *szAddr, BOOL deleteLastFromDB = TRUE);
+ void SearchDeleteFromRecent(const TCHAR *szAddr, bool deleteLastFromDB);
void SearchAddToRecent(const TCHAR *szAddr, HWND hwndDialog = NULL);
//---- jabber_std.cpp ----------------------------------------------
@@ -651,7 +651,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface //---- jabber_svc.c ------------------------------------------------------------------
void CheckMenuItems();
- void EnableMenuItems(BOOL bEnable);
+ void EnableMenuItems(bool bEnable);
INT_PTR __cdecl JabberGetAvatar(WPARAM wParam, LPARAM lParam);
INT_PTR __cdecl JabberGetAvatarCaps(WPARAM wParam, LPARAM lParam);
@@ -818,7 +818,7 @@ private: LONG m_nSerial;
HGENMENU m_hPrivacyMenuRoot;
- BOOL m_menuItemsStatus;
+ bool m_menuItemsStatus;
LIST<void> m_hPrivacyMenuItems;
int m_nMenuResourceItems;
|