summaryrefslogtreecommitdiff
path: root/desktop/selection.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-04-29 22:04:34 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-05-02 09:34:01 +0100
commit50d7a2288c84e3586ab99e6fc7b41482ac49074e (patch)
treea92e655bad0a1b3f9cdd9784119ba465ba46d72e /desktop/selection.h
parent6b178fb3fec17aa9e81571567bec6d49def4501c (diff)
downloadnetsurf-50d7a2288c84e3586ab99e6fc7b41482ac49074e.tar.gz
netsurf-50d7a2288c84e3586ab99e6fc7b41482ac49074e.tar.bz2
Remove redundant read-only test function.
Diffstat (limited to 'desktop/selection.h')
-rw-r--r--desktop/selection.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/desktop/selection.h b/desktop/selection.h
index 5e3286fc5..7e620fc46 100644
--- a/desktop/selection.h
+++ b/desktop/selection.h
@@ -75,8 +75,6 @@ void selection_reinit(struct selection *s, struct box *root);
/* bool selection_dragging_start(struct selection *s); */
#define selection_dragging_start(s) ((s)->drag_state == DRAG_START)
-bool selection_read_only(struct selection *s);
-
void selection_clear(struct selection *s, bool redraw);
void selection_select_all(struct selection *s);
@@ -99,7 +97,4 @@ bool selection_highlighted(const struct selection *s,
unsigned start, unsigned end,
unsigned *start_idx, unsigned *end_idx);
-void selection_update(struct selection *s, size_t byte_offset, int change,
- bool redraw);
-
#endif