diff options
author | corvid <corvid@lavabit.com> | 2011-06-16 03:30:57 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-06-16 03:30:57 +0000 |
commit | 3fbfa30696de499dbc08635fee1188e0e488bf6d (patch) | |
tree | 135c9cee30201a0d7592cf9358d2fda195a277b7 /dw/widget.hh | |
parent | 6d2e5e9b2f38854ed4be28b552d020f17838ff1e (diff) |
rm unused double-click code
Diffstat (limited to 'dw/widget.hh')
-rw-r--r-- | dw/widget.hh | 14 |
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; |