diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-11-27 15:35:43 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2022-11-27 15:35:50 +0100 |
| commit | c827292ec9c9170a7a87d0a3f3eda3db171ae031 (patch) | |
| tree | 5daef7f88eece118c2f0ef6f29c148bce58fec02 /src/Fl_Graphics_Driver.cxx | |
| parent | 13e3a4c61343e2bf555ea9b9ee05af4e452e04ab (diff) | |
Fix forgotten name change
Diffstat (limited to 'src/Fl_Graphics_Driver.cxx')
| -rw-r--r-- | src/Fl_Graphics_Driver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |
