diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-30 23:14:49 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-30 23:14:49 +0300 |
commit | 09768fdb0f9de1927ff55292af87714eceefb562 (patch) | |
tree | a94b16d0b8750a852f37e13baaf6550158cda0b3 /include | |
parent | d740c844823e16dde4811c7582068d18de850a55 (diff) |
fixes #661 (Scriver: Cannot send message if "Send Message" button not set in Toolbar)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_message.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_message.h b/include/m_message.h index 10642becf7..c9bbf34910 100644 --- a/include/m_message.h +++ b/include/m_message.h @@ -233,8 +233,8 @@ struct StatusIconClickData #define BBBF_ISRSIDEBUTTON (1<<7)
#define BBBF_CANBEHIDDEN (1<<8)
#define BBBF_ISSEPARATOR (1<<9)
-
-#define BBBF_CREATEBYID (1<<11) //only for tabsrmm internal use
+#define BBBF_CANTBEHIDDEN (1<<10)
+#define BBBF_CREATEBYID (1<<11) // only for the internal use
struct BBButton
{
@@ -346,7 +346,7 @@ struct CustomButtonData : public MZeroedObject HANDLE m_hIcon; // Handle to icolib registred icon
bool m_bIMButton, m_bChatButton;
- bool m_bCanBeHidden, m_bHidden, m_bAutoHidden, m_bSeparator, m_bDisabled, m_bPushButton;
+ bool m_bCanBeHidden, m_bCantBeHidden, m_bHidden, m_bAutoHidden, m_bSeparator, m_bDisabled, m_bPushButton;
bool m_bRSided;
BYTE m_opFlags;
int m_hLangpack;
|