From be2e6aa80d9a476668ac3c9d355b97a73c9f3b3a Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 2 Mar 2026 10:39:05 +1100 Subject: Remove RectangleInset function that is no longer used. --- qt/ScintillaEditBase/PlatQt.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'qt') diff --git a/qt/ScintillaEditBase/PlatQt.h b/qt/ScintillaEditBase/PlatQt.h index 56fa8bb06..a4d924014 100644 --- a/qt/ScintillaEditBase/PlatQt.h +++ b/qt/ScintillaEditBase/PlatQt.h @@ -71,10 +71,6 @@ inline QPointF QPointFFromPoint(Point qp) return QPointF(qp.x, qp.y); } -constexpr PRectangle RectangleInset(PRectangle rc, XYPOSITION delta) noexcept { - return PRectangle(rc.left + delta, rc.top + delta, rc.right - delta, rc.bottom - delta); -} - class SurfaceImpl : public Surface { private: QPaintDevice *device = nullptr; -- cgit v1.2.3