diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-14 16:06:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-17 09:59:59 +0200 |
commit | b49aed047cde78573ba4a3414301b7bc10fa43ad (patch) | |
tree | b92be4ea5fa98b15f26e4bf2402fff6c168e1e0a | |
parent | f6dd3ca86263f6e350e9e5fcd62387e686e239da (diff) |
maSelectHdl is unused
Change-Id: I91d21f41c653bdc40299321b7633e6f87ccdce61
-rw-r--r-- | include/svtools/calendar.hxx | 3 | ||||
-rw-r--r-- | svtools/source/control/calendar.cxx | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/include/svtools/calendar.hxx b/include/svtools/calendar.hxx index e4144f54e0d1..ef4e48bf4eed 100644 --- a/include/svtools/calendar.hxx +++ b/include/svtools/calendar.hxx @@ -356,7 +356,6 @@ private: Date maDefaultDate; bool mbToday; bool mbNone; - Link<> maSelectHdl; DECL_DLLPRIVATE_LINK_TYPED( ImplSelectHdl, Calendar*, void ); DECL_DLLPRIVATE_LINK( ImplClickHdl, PushButton* ); @@ -367,8 +366,6 @@ public: virtual ~CalendarField(); virtual void dispose() SAL_OVERRIDE; - void Select(); - virtual bool ShowDropDown( bool bShow ) SAL_OVERRIDE; VclPtr<Calendar> CreateCalendar( vcl::Window* pParent ); Calendar* GetCalendar(); diff --git a/svtools/source/control/calendar.cxx b/svtools/source/control/calendar.cxx index e5876142b98c..12cdcfd867a4 100644 --- a/svtools/source/control/calendar.cxx +++ b/svtools/source/control/calendar.cxx @@ -2249,7 +2249,6 @@ IMPL_LINK_TYPED( CalendarField, ImplSelectHdl, Calendar*, pCalendar, void ) SetModifyFlag(); Modify(); } - Select(); } } @@ -2278,7 +2277,6 @@ IMPL_LINK( CalendarField, ImplClickHdl, PushButton*, pBtn ) Modify(); } } - Select(); return 0; } @@ -2291,11 +2289,6 @@ IMPL_LINK_NOARG(CalendarField, ImplPopupModeEndHdl) return 0; } -void CalendarField::Select() -{ - maSelectHdl.Call( this ); -} - bool CalendarField::ShowDropDown( bool bShow ) { if ( bShow ) |