From 2c2c6484dc2eb7b3da52f9054435dc680f64b132 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 11 Sep 2024 14:40:05 +0300 Subject: =?UTF-8?q?fixes=20#4650=20(=D0=9E=D0=BA=D0=BD=D0=BE=20=D1=81?= =?UTF-8?q?=D0=BE=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B9:=20=D0=BA?= =?UTF-8?q?=D0=BD=D0=BE=D0=BF=D0=BA=D0=B8=20=D1=84=D0=BE=D1=80=D0=BC=D0=B0?= =?UTF-8?q?=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F=20=D1=82?= =?UTF-8?q?=D0=B5=D0=BA=D1=81=D1=82=D0=B0=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D1=8E=D1=82=20=D0=B2=20=D0=BF=D1=80=D0=B8=D0=B2=D0=B0?= =?UTF-8?q?=D1=82=D0=B0=D1=85,=20=D0=BD=D0=BE=20=D0=BD=D0=B5=20=D0=B2=20?= =?UTF-8?q?=D0=B3=D1=80=D1=83=D0=BF=D1=87=D0=B0=D1=82=D0=B0=D1=85)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/m_chat.h | 15 +++++---------- include/m_chat_int.h | 2 -- 2 files changed, 5 insertions(+), 12 deletions(-) (limited to 'include') diff --git a/include/m_chat.h b/include/m_chat.h index ea716ea040..49c3a41dfa 100644 --- a/include/m_chat.h +++ b/include/m_chat.h @@ -125,16 +125,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // Flags -#define GC_BOLD 0x0001 // enable the 'bold' button -#define GC_ITALICS 0x0002 // enable the 'italics' button -#define GC_UNDERLINE 0x0004 // enable the 'underline' button -#define GC_COLOR 0x0008 // enable the 'foreground color' button -#define GC_BKGCOLOR 0x0010 // enable the 'background color' button -#define GC_ACKMSG 0x0020 // the protocol must acknowlege messages sent -#define GC_TYPNOTIF 0x0040 // enable typing notifications. -#define GC_CHANMGR 0x0080 // enable the 'channel settings' button -#define GC_DATABASE 0x0100 // all events are backed in the database -#define GC_PERSISTENT 0x0200 // chat structure is stored offline not to retrieve it each time +#define GC_CHANMGR 0x0001 // enable the 'channel settings' button +#define GC_DATABASE 0x0002 // all events are backed in the database +#define GC_PERSISTENT 0x0004 // chat structure is stored offline not to retrieve it each time +#define GC_ACKMSG 0x0008 // the protocol must acknowlege messages sent +#define GC_TYPNOTIF 0x0010 // enable typing notifications. // Error messages #define GC_ERROR 1 // An internal error occurred. diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 2d01f08ff4..bd9f340d41 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -103,8 +103,6 @@ struct MIR_APP_EXPORT GCModuleInfoBase : public MZeroedObject, public MNonCopyab char* pszModule; wchar_t* ptszModDispName; - bool bBold, bItalics, bUnderline; - bool bColor, bBkgColor; bool bChanMgr, bAckMsg, bDatabase, bPersistent; int iMaxText; -- cgit v1.2.3