From 26459abf8aef509ee45831bcfd1a541bbf831355 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 14 Oct 2011 14:29:53 +0000 Subject: WindowCoord: rename to DisplayCoord and move with DisplayBuffer --- src/display_buffer.hh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/display_buffer.hh') diff --git a/src/display_buffer.hh b/src/display_buffer.hh index 7f022b8c..a3451c35 100644 --- a/src/display_buffer.hh +++ b/src/display_buffer.hh @@ -4,11 +4,19 @@ #include #include +#include "line_and_column.hh" + #include "buffer.hh" namespace Kakoune { +struct DisplayCoord : LineAndColumn +{ + DisplayCoord(int line = 0, int column = 0) + : LineAndColumn(line, column) {} +}; + typedef int Attribute; enum Attributes -- cgit v1.2.3