summaryrefslogtreecommitdiff
path: root/protocols/IRCG/src/irc_dlg.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-15 16:36:27 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-15 16:36:27 +0300
commit9f2c2b2e71f8245c0c251276ab700e1df0cbea61 (patch)
treef2460fabb71987301f4b56029bbda4f5a0a0ba78 /protocols/IRCG/src/irc_dlg.h
parent18789aed193e917877c7cdff22327786d5a2ac58 (diff)
IRC:
- fixes #1342 (broken search in channel browser); - code cleaning; - version bump
Diffstat (limited to 'protocols/IRCG/src/irc_dlg.h')
-rw-r--r--protocols/IRCG/src/irc_dlg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/IRCG/src/irc_dlg.h b/protocols/IRCG/src/irc_dlg.h
index c84cde8aac..0d74f61258 100644
--- a/protocols/IRCG/src/irc_dlg.h
+++ b/protocols/IRCG/src/irc_dlg.h
@@ -88,7 +88,6 @@ struct CListDlg : public CProtoDlgBase < CIrcProto >
CListDlg(CIrcProto* _pro);
virtual void OnInitDialog();
- virtual void OnChange(CCtrlBase* ctrl);
virtual INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam);
virtual void OnDestroy();
virtual int Resizer(UTILRESIZECONTROL *urc);
@@ -98,9 +97,10 @@ struct CListDlg : public CProtoDlgBase < CIrcProto >
UINT_PTR m_timer;
CCtrlButton m_Join;
- void OnJoin(CCtrlButton*);
+ void onClick_Join(CCtrlButton*);
- void List_OnColumnClick(CCtrlListView::TEventInfo* ev);
+ void onChange_Filter(CCtrlEdit *ctrl);
+ void onColumnClick_List(CCtrlListView::TEventInfo* ev);
void UpdateList(void);
};