From 871e777e55fa76938da991b9b1a72605ba78bad4 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 5 Feb 2003 07:37:48 +0000 Subject: use the widget's bevel width --- otk/label.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'otk/label.cc') diff --git a/otk/label.cc b/otk/label.cc index f0a4b665..824cc81d 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -33,7 +33,7 @@ void Label::fitString(const std::string &str) void Label::fitSize(int w, int h) { - unsigned int sidemargin = style()->bevelWidth() * 2; + unsigned int sidemargin = _bevel_width * 2; resize(w + sidemargin * 2, h); } @@ -42,7 +42,7 @@ void Label::update() if (_dirty) { int w = _rect.width(), h = _rect.height(); const Font *ft = style()->labelFont(); - unsigned int sidemargin = style()->bevelWidth() * 2; + unsigned int sidemargin = _bevel_width * 2; if (!_fixed_width) w = ft->measureString(_text) + sidemargin * 2; if (!_fixed_height) @@ -66,7 +66,7 @@ void Label::renderForeground(void) Widget::renderForeground(); const Font *ft = style()->labelFont(); - unsigned int sidemargin = style()->bevelWidth() * 2; + unsigned int sidemargin = _bevel_width * 2; ustring t = _text; // the actual text to draw int x = sidemargin; // x coord for the text -- cgit v1.2.3