diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-04 14:29:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-04 14:29:10 +0300 |
commit | d1f9ed840683828f9f4d2fcb80523bcda77115a5 (patch) | |
tree | 9c78ff98f1eee4ce3a55fc91eb13318050fe3781 /protocols/JabberG/src/jabber_notes.cpp | |
parent | 22f6f8cf6d902b7460d727aa894d9df68e1bab1c (diff) |
Jabber:
- ugly & obsolete class CCtrlFilterListView removed, because it behave wrong in the presence of scrollbars;
- manual filter added to the Disco dialog;
- also fixes #1882 (Jabber: channel list glitch)
Diffstat (limited to 'protocols/JabberG/src/jabber_notes.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_notes.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_notes.cpp b/protocols/JabberG/src/jabber_notes.cpp index aeb217c987..0956b06bfc 100644 --- a/protocols/JabberG/src/jabber_notes.cpp +++ b/protocols/JabberG/src/jabber_notes.cpp @@ -564,7 +564,7 @@ public: EnableControls();
}
- void btnAdd_OnClick(CCtrlFilterListView*)
+ void btnAdd_OnClick(CCtrlButton*)
{
CNoteItem *pNote = new CNoteItem();
CJabberDlgNoteItem dlg(this, pNote);
@@ -582,7 +582,7 @@ public: EnableControls();
}
- void btnEdit_OnClick(CCtrlFilterListView*)
+ void btnEdit_OnClick(CCtrlButton*)
{
int idx = m_lstNotes.GetCurSel();
if (idx != LB_ERR) {
@@ -597,7 +597,7 @@ public: EnableControls();
}
- void btnRemove_OnClick(CCtrlFilterListView*)
+ void btnRemove_OnClick(CCtrlButton*)
{
int idx = m_lstNotes.GetCurSel();
if (idx != LB_ERR) {
|