diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-11 12:27:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-11 12:27:21 +0300 |
commit | e02f1e05b363226a48fe9a4b151748a5cbb295d9 (patch) | |
tree | e49e428ab703459d65ef7829187dd17b9af4154c /include | |
parent | 432b115c1eaf6f74d7d4d8ac580f5de39c16a533 (diff) |
GC_UPDATETITLE replaced with CSrmmBaseDlg::UpdateTitle
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 7cf9a6e062..5d207ecc3f 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -39,7 +39,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define GC_FAKE_EVENT MEVENT(0xBABABEDA)
-#define GC_UPDATETITLE (WM_USER+100)
#define GC_SPLITTERMOVED (WM_USER+101)
#define GC_CLOSEWINDOW (WM_USER+103)
#define GC_GETITEMDATA (WM_USER+104)
@@ -431,6 +430,8 @@ public: void ClearLog();
+ virtual void UpdateTitle() PURE;
+
__forceinline bool isChat() const { return m_si != nullptr; }
__inline void* operator new(size_t size){ return calloc(1, size); }
|