summaryrefslogtreecommitdiff
path: root/src/textbuf_type.h
diff options
context:
space:
mode:
authorzuu <zuu@openttd.org>2012-09-10 18:47:13 +0000
committerzuu <zuu@openttd.org>2012-09-10 18:47:13 +0000
commitbcf1cb1f9c9daa29cfd7df2eb0640f3f66e41f48 (patch)
tree0f6d8262b3e36aeee2ff20a2eaa680633dc410a3 /src/textbuf_type.h
parent0656a8d40bfa670183454abe5bc6478beb061768 (diff)
downloadopenttd-bcf1cb1f9c9daa29cfd7df2eb0640f3f66e41f48.tar.xz
(svn r24521) -Feature [FS#5203]: Ctrl + Backspace/Delete to remove characters up to next word beginning in text edit boxes
Diffstat (limited to 'src/textbuf_type.h')
-rw-r--r--src/textbuf_type.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/textbuf_type.h b/src/textbuf_type.h
index 1a404ad58..363f01643 100644
--- a/src/textbuf_type.h
+++ b/src/textbuf_type.h
@@ -40,6 +40,7 @@ struct Textbuf {
private:
bool CanDelChar(bool backspace);
+ WChar GetNextDelChar(bool backspace);
void DelChar(bool backspace);
bool CanMoveCaretLeft();
WChar MoveCaretLeft();