aboutsummaryrefslogtreecommitdiff
path: root/dw/widget.hh
diff options
context:
space:
mode:
Diffstat (limited to 'dw/widget.hh')
-rw-r--r--dw/widget.hh14
1 files changed, 5 insertions, 9 deletions
diff --git a/dw/widget.hh b/dw/widget.hh
index 727aff05..b751a282 100644
--- a/dw/widget.hh
+++ b/dw/widget.hh
@@ -203,25 +203,21 @@ protected:
inline bool selectionButtonPress (Iterator *it, int charPos, int linkNo,
EventButton *event, bool withinContent)
- { return layout->selectionState.buttonPress (it, charPos, linkNo, event,
- withinContent); }
+ { return layout->selectionState.buttonPress (it, charPos, linkNo, event); }
inline bool selectionButtonRelease (Iterator *it, int charPos, int linkNo,
EventButton *event, bool withinContent)
- { return layout->selectionState.buttonRelease (it, charPos, linkNo, event,
- withinContent); }
+ { return layout->selectionState.buttonRelease (it, charPos, linkNo, event);}
inline bool selectionButtonMotion (Iterator *it, int charPos, int linkNo,
EventMotion *event, bool withinContent)
- { return layout->selectionState.buttonMotion (it, charPos, linkNo, event,
- withinContent); }
+ { return layout->selectionState.buttonMotion (it, charPos, linkNo, event); }
inline bool selectionHandleEvent (SelectionState::EventType eventType,
Iterator *it, int charPos, int linkNo,
- MousePositionEvent *event,
- bool withinContent)
+ MousePositionEvent *event)
{ return layout->selectionState.handleEvent (eventType, it, charPos, linkNo,
- event, withinContent); }
+ event); }
private:
void *deleteCallbackData;