diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-19 13:10:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-19 13:10:00 +0000 |
commit | 11b8719d106635799800b09e203628d0c7ff2f4c (patch) | |
tree | d92f055207a492d9fa2857fcb3fe923f376b43bc /include/m_gui.h | |
parent | 24a39515399e9555dd0e4ad72b7a22f9152b0adf (diff) |
control comparator function removed from the class definition
git-svn-id: http://svn.miranda-ng.org/main/trunk@13694 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_gui.h')
-rw-r--r-- | include/m_gui.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 718c388cbc..51d2d3ddd0 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -373,13 +373,6 @@ public: virtual void OnApply();
virtual void OnReset();
- static int cmp(const CCtrlBase *c1, const CCtrlBase *c2)
- {
- if (c1->m_idCtrl < c2->m_idCtrl) return -1;
- if (c1->m_idCtrl > c2->m_idCtrl) return +1;
- return 0;
- }
-
protected:
HWND m_hwnd; // must be the first data item
int m_idCtrl;
|