summaryrefslogtreecommitdiff
path: root/basctl/source/inc/dlgedfunc.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/inc/dlgedfunc.hxx')
-rw-r--r--basctl/source/inc/dlgedfunc.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basctl/source/inc/dlgedfunc.hxx b/basctl/source/inc/dlgedfunc.hxx
index 9f6118784dca..a675288a2bfe 100644
--- a/basctl/source/inc/dlgedfunc.hxx
+++ b/basctl/source/inc/dlgedfunc.hxx
@@ -42,9 +42,9 @@ public:
explicit DlgEdFunc (DlgEditor& rParent);
virtual ~DlgEdFunc();
- virtual bool MouseButtonDown( const MouseEvent& rMEvt );
+ virtual void MouseButtonDown( const MouseEvent& rMEvt );
virtual bool MouseButtonUp( const MouseEvent& rMEvt );
- virtual bool MouseMove( const MouseEvent& rMEvt );
+ virtual void MouseMove( const MouseEvent& rMEvt );
bool KeyInput( const KeyEvent& rKEvt );
};
@@ -58,9 +58,9 @@ public:
explicit DlgEdFuncInsert (DlgEditor& rParent);
virtual ~DlgEdFuncInsert ();
- virtual bool MouseButtonDown( const MouseEvent& rMEvt ) override;
+ virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
virtual bool MouseButtonUp( const MouseEvent& rMEvt ) override;
- virtual bool MouseMove( const MouseEvent& rMEvt ) override;
+ virtual void MouseMove( const MouseEvent& rMEvt ) override;
};
@@ -76,9 +76,9 @@ public:
explicit DlgEdFuncSelect (DlgEditor& rParent);
virtual ~DlgEdFuncSelect ();
- virtual bool MouseButtonDown( const MouseEvent& rMEvt ) override;
+ virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
virtual bool MouseButtonUp( const MouseEvent& rMEvt ) override;
- virtual bool MouseMove( const MouseEvent& rMEvt ) override;
+ virtual void MouseMove( const MouseEvent& rMEvt ) override;
};