diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-08 19:48:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-08 19:48:45 +0300 |
commit | 3b44da50baf9b321f040c5e5b5b0d7fb12ab7d5f (patch) | |
tree | 5a3e2e998a0e944e5314d0d8070143063cf00fab /plugins/ExternalAPI | |
parent | 615db90328ab27beb166c3db19a7a0326fb1345a (diff) |
fix for dynamically created toolbar icons in Actman
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc b/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc index 593773019a..58fa0bfa04 100644 --- a/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc +++ b/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc @@ -16,14 +16,14 @@ const // lParam = 0;
// This event will be send after module loaded and after each toolbar reset
// You should add your buttons on this event
- ME_MSG_TOOLBARLOADED:PAnsiChar = 'TabSRMM/ButtonsBar/ModuleLoaded';
+ ME_MSG_TOOLBARLOADED:PAnsiChar = 'SRMM/ButtonsBar/ModuleLoaded';
///////////////////////////////////////////////////
// ButtonClicked event
// wParam = (HANDLE)hContact;
// lParam = (CustomButtonClickData *)&CustomButtonClickData;
// catch to show a popup menu, etc.
- ME_MSG_BUTTONPRESSED:PAnsiChar = 'TabSRMM/ButtonsBar/ButtonPressed';
+ ME_MSG_BUTTONPRESSED:PAnsiChar = 'SRMM/ButtonsBar/ButtonPressed';
//event flags
BBCF_RIGHTBUTTON = 1;
|