aboutsummaryrefslogtreecommitdiff
path: root/text.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-05-03 17:32:14 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-05-03 17:32:49 +0200
commit1c8990a329fabf3cf4ab790a61ee86c35391c042 (patch)
tree724334396e43c2b3f527773eeb0b3718c152f294 /text.h
parent02c18c23d7eb8e520e8584af183ca9b67937d45d (diff)
downloadvis-1c8990a329fabf3cf4ab790a61ee86c35391c042.tar.gz
vis-1c8990a329fabf3cf4ab790a61ee86c35391c042.tar.xz
text: remove count argument from text_{earlier,later}
Diffstat (limited to 'text.h')
-rw-r--r--text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.h b/text.h
index 607f239..3080acb 100644
--- a/text.h
+++ b/text.h
@@ -139,8 +139,8 @@ size_t text_undo(Text*);
* newest state i.e. there was nothing to redo.
*/
size_t text_redo(Text*);
-size_t text_earlier(Text*, int count);
-size_t text_later(Text*, int count);
+size_t text_earlier(Text*);
+size_t text_later(Text*);
/**
* Restore the text to the state closest to the time given
*/