aboutsummaryrefslogtreecommitdiff
path: root/view.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-06-12 18:28:19 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-06-15 15:51:43 +0200
commit08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5 (patch)
tree9abbd5b7c4dd785354296939b50e433d5f69cea3 /view.h
parent742fb8b4c39d3278227a25ab7723c0f72bbca552 (diff)
downloadvis-08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5.tar.gz
vis-08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5.tar.xz
view: rename view_cursors_column{,count,next}
Diffstat (limited to 'view.h')
-rw-r--r--view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/view.h b/view.h
index 8f6e1ca..d870505 100644
--- a/view.h
+++ b/view.h
@@ -168,7 +168,7 @@ int view_selections_count(View*);
*/
int view_selections_number(Cursor*);
/** Get maximal number of selections on a single line. */
-int view_cursors_column_count(View*);
+int view_selections_column_count(View*);
/**
* Starting from the start of the text, get the `column`-th selection on a line.
* @param column The zero based column index.
@@ -178,7 +178,7 @@ Cursor *view_cursors_column(View*, int column);
* Get the next `column`-th selection on a line.
* @param column The zero based column index.
*/
-Cursor *view_cursors_column_next(Cursor*, int column);
+Cursor *view_selections_column_next(Cursor*, int column);
/**
* @}
* @defgroup view_cover