summaryrefslogtreecommitdiff
path: root/svtools/source/control/calendar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/calendar.cxx')
-rw-r--r--svtools/source/control/calendar.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/control/calendar.cxx b/svtools/source/control/calendar.cxx
index 9865781c1a6c..80b9b507bd55 100644
--- a/svtools/source/control/calendar.cxx
+++ b/svtools/source/control/calendar.cxx
@@ -1989,7 +1989,7 @@ public:
PushButton* EnableNoneBtn( bool bEnable );
void ArrangeButtons();
- virtual bool Notify( NotifyEvent& rNEvt ) override;
+ virtual bool EventNotify( NotifyEvent& rNEvt ) override;
};
ImplCFieldFloatWin::ImplCFieldFloatWin( vcl::Window* pParent ) :
@@ -2127,7 +2127,7 @@ void ImplCFieldFloatWin::ArrangeButtons()
}
}
-bool ImplCFieldFloatWin::Notify( NotifyEvent& rNEvt )
+bool ImplCFieldFloatWin::EventNotify( NotifyEvent& rNEvt )
{
if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
{
@@ -2136,7 +2136,7 @@ bool ImplCFieldFloatWin::Notify( NotifyEvent& rNEvt )
mpCalendar->Select();
}
- return FloatingWindow::Notify( rNEvt );
+ return FloatingWindow::EventNotify( rNEvt );
}
CalendarField::CalendarField(vcl::Window* pParent, WinBits nWinStyle)