aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui/mactextwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/macgui/mactextwindow.h')
-rw-r--r--graphics/macgui/mactextwindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/macgui/mactextwindow.h b/graphics/macgui/mactextwindow.h
index d1ee3c1b2e..b3d9ba8592 100644
--- a/graphics/macgui/mactextwindow.h
+++ b/graphics/macgui/mactextwindow.h
@@ -31,10 +31,14 @@ namespace Graphics {
struct SelectedText {
int startX, startY;
int endX, endY;
+ int startRow, startCol;
+ int endRow, endCol;
SelectedText() {
startX = startY = 0;
endX = endY = 0;
+ startRow = startCol = 0;
+ endRow = endCol = 0;
}
bool needsRender() {