summaryrefslogtreecommitdiff
path: root/libs/canvas/canvas
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-04-10 18:01:04 +0200
committerRobin Gareus <robin@gareus.org>2020-04-10 18:06:42 +0200
commit2177462b73c9ab85fce0d91b63a1e082a33da7aa (patch)
tree9a59c4204a7d7ddd5a627259d1ff7305fcc0573d /libs/canvas/canvas
parentbc4de874dcb23ba1862cbf7e867db3646c9a41f7 (diff)
NO-OP: consistent function and variable naming
Diffstat (limited to 'libs/canvas/canvas')
-rw-r--r--libs/canvas/canvas/poly_item.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/canvas/canvas/poly_item.h b/libs/canvas/canvas/poly_item.h
index 3df13ff75f..dc3c61c9b2 100644
--- a/libs/canvas/canvas/poly_item.h
+++ b/libs/canvas/canvas/poly_item.h
@@ -46,8 +46,8 @@ protected:
Points _points;
/* these return screen-cordidates of the most recent render_path() */
- Duple const& leftedge () const { return _left; }
- Duple const& rightedge () const { return _right; }
+ Duple const& left_edge () const { return _left; }
+ Duple const& right_edge () const { return _right; }
private:
static bool interpolate_line (Duple&, Duple const&, Coord const);