From 04683f14883f4cd64febadd71b327639f1e7edcc Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 17 Jan 2014 16:40:50 +0100 Subject: Window::Notify should return bool Change-Id: I72081b1022582c8b6f95a611e21d9c78f7581efe --- include/sfx2/basedlgs.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/sfx2/basedlgs.hxx') diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index 56ddacd7c8ae..def7d091e5fd 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -114,7 +114,7 @@ protected: public: virtual void FillInfo(SfxChildWinInfo&) const; void Initialize (SfxChildWinInfo* pInfo); - virtual long Notify( NotifyEvent& rNEvt ); + virtual bool Notify( NotifyEvent& rNEvt ); SfxBindings& GetBindings() { return *pBindings; } @@ -148,7 +148,7 @@ protected: virtual sal_Bool Close(); virtual void Resize(); virtual void Move(); - virtual long Notify( NotifyEvent& rNEvt ); + virtual bool Notify( NotifyEvent& rNEvt ); SfxBindings& GetBindings() { return *pBindings; } -- cgit