aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui/mactext.h
diff options
context:
space:
mode:
authorEugene Sandulenko2017-08-03 19:26:28 +0200
committerEugene Sandulenko2017-08-04 21:54:20 +0200
commit676b6082ab0bcbaf2a5303c7471f87c9cfe847dd (patch)
tree8dad85da469e6d35853b7ab8bd0cd00e082b05c0 /graphics/macgui/mactext.h
parent71aadb5645a8d19ec015b372f5331dbb6440a719 (diff)
downloadscummvm-rg350-676b6082ab0bcbaf2a5303c7471f87c9cfe847dd.tar.gz
scummvm-rg350-676b6082ab0bcbaf2a5303c7471f87c9cfe847dd.tar.bz2
scummvm-rg350-676b6082ab0bcbaf2a5303c7471f87c9cfe847dd.zip
GRAPHICS: GUI: Mark beginning and end column of selection in MacTextWindow
Diffstat (limited to 'graphics/macgui/mactext.h')
-rw-r--r--graphics/macgui/mactext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/macgui/mactext.h b/graphics/macgui/mactext.h
index ffc8c8dc71..7cbf40e8bc 100644
--- a/graphics/macgui/mactext.h
+++ b/graphics/macgui/mactext.h
@@ -109,6 +109,7 @@ public:
void removeLastLine();
int getLineCount() { return _textLines.size(); }
int getTextHeight() { return _textMaxHeight; }
+ int getLineHeight(int line);
void render();
Graphics::ManagedSurface *getSurface() { return _surface; }
@@ -121,7 +122,6 @@ private:
void recalcDims();
void reallocSurface();
int getLineWidth(int line, bool enforce = false);
- int getLineHeight(int line);
private:
MacWindowManager *_wm;