summaryrefslogtreecommitdiff
path: root/src/fl_boxtype.cxx
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 12:53:10 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 12:53:10 +0500
commit51cf34eb8fdef936328c565276615880997e28bb (patch)
tree27ded00e3ff593dbcf84af7e62bf410802523eb2 /src/fl_boxtype.cxx
parentcf813db2428ec77de88b06996712aad48de04219 (diff)
wip
Diffstat (limited to 'src/fl_boxtype.cxx')
-rw-r--r--src/fl_boxtype.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fl_boxtype.cxx b/src/fl_boxtype.cxx
index a9c44be08..fe2dba385 100644
--- a/src/fl_boxtype.cxx
+++ b/src/fl_boxtype.cxx
@@ -46,13 +46,13 @@ static const uchar inactive_ramp[24] = {
51, 51, 52, 52};
static int draw_it_active = 1;
-int Fl::Private::box_border_radius_max_ = 15;
+int Fl_Private_box_border_radius_max_ = 15;
/** Get the maximum border radius of all "rounded" boxtypes in pixels.
\since 1.4.0
*/
int Fl::box_border_radius_max() {
- return Private::box_border_radius_max_;
+ return Fl_Private_box_border_radius_max_;
}
/** Set the maximum border radius of all "rounded" boxtypes in pixels.
@@ -68,16 +68,16 @@ int Fl::box_border_radius_max() {
\since 1.4.0
*/
void Fl::box_border_radius_max(int R) {
- Private::box_border_radius_max_ = R < 5 ? 5 : R;
+ Fl_Private_box_border_radius_max_ = R < 5 ? 5 : R;
}
-int Fl::Private::box_shadow_width_ = 3;
+int Fl_Private_box_shadow_width_ = 3;
/** Get the box shadow width of all "shadow" boxtypes in pixels.
\since 1.4.0
*/
int Fl::box_shadow_width() {
- return Private::box_shadow_width_;
+ return Fl_Private_box_shadow_width_;
}
/** Set the box shadow width of all "shadow" boxtypes in pixels.
@@ -85,7 +85,7 @@ int Fl::box_shadow_width() {
\since 1.4.0
*/
void Fl::box_shadow_width(int W) {
- Private::box_shadow_width_ = W < 1 ? 1 : W;
+ Fl_Private_box_shadow_width_ = W < 1 ? 1 : W;
}
/**