summaryrefslogtreecommitdiff
path: root/framework/inc/uielement/edittoolbarcontroller.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-18 00:18:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-18 00:37:49 +0100
commit602c87b4259d118e5db6d8a990c4695103f916dd (patch)
tree1cbc6cf8309b680476f5116cd5320f8f6a99c32a /framework/inc/uielement/edittoolbarcontroller.hxx
parent849482c0ea88c4aa70ec56adfefe7e59b6060950 (diff)
Window::PreNotify should return bool
Change-Id: Ic9903fd887f2c3fab2630ebeb20df39392177c8d
Diffstat (limited to 'framework/inc/uielement/edittoolbarcontroller.hxx')
-rw-r--r--framework/inc/uielement/edittoolbarcontroller.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/uielement/edittoolbarcontroller.hxx b/framework/inc/uielement/edittoolbarcontroller.hxx
index 5e43474d30fd..36305040138c 100644
--- a/framework/inc/uielement/edittoolbarcontroller.hxx
+++ b/framework/inc/uielement/edittoolbarcontroller.hxx
@@ -41,7 +41,7 @@ class IEditListener
virtual void KeyInput( const KeyEvent& rKEvt ) = 0;
virtual void GetFocus() = 0;
virtual void LoseFocus() = 0;
- virtual long PreNotify( NotifyEvent& rNEvt ) = 0;
+ virtual bool PreNotify( NotifyEvent& rNEvt ) = 0;
protected:
~IEditListener() {}
@@ -68,7 +68,7 @@ class EditToolbarController : public IEditListener,
virtual void KeyInput( const KeyEvent& rKEvt );
virtual void GetFocus();
virtual void LoseFocus();
- virtual long PreNotify( NotifyEvent& rNEvt );
+ virtual bool PreNotify( NotifyEvent& rNEvt );
protected:
virtual void executeControlCommand( const ::com::sun::star::frame::ControlCommand& rControlCommand );