From c827292ec9c9170a7a87d0a3f3eda3db171ae031 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 27 Nov 2022 15:35:43 +0100 Subject: Fix forgotten name change --- src/Fl_Graphics_Driver.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Fl_Graphics_Driver.cxx b/src/Fl_Graphics_Driver.cxx index 9d120961e..350f187c6 100644 --- a/src/Fl_Graphics_Driver.cxx +++ b/src/Fl_Graphics_Driver.cxx @@ -489,12 +489,12 @@ void Fl_Graphics_Driver::_rbox(int fill, int x, int y, int w, int h, int r) { if (fill) fl_end_polygon(); else fl_end_loop(); } -/** see fl_rrect() */ +/** see fl_rounded_rect() */ void Fl_Graphics_Driver::rounded_rect(int x, int y, int w, int h, int r) { _rbox(0, x, y, w, h, r); } -/** see fl_rrectf() */ +/** see fl_rounded_rectf() */ void Fl_Graphics_Driver::rounded_rectf(int x, int y, int w, int h, int r) { _rbox(1, x, y, w, h, r); } -- cgit v1.2.3