diff options
Diffstat (limited to 'src/fl_boxtype.cxx')
| -rw-r--r-- | src/fl_boxtype.cxx | 12 |
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; } /** |
