summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-17 21:45:58 +0000
committerDana Jansens <danakj@orodu.net>2003-02-17 21:45:58 +0000
commit729506e1f88383d8411624f5f2ab3c2c5f45cf43 (patch)
treef05e02255ae622dd399afc66691e8701fedd8084
parentbc8d855b11e82fe937aeb81926808f2715400063 (diff)
calcDefaultSizes is protected
-rw-r--r--otk/label.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/label.hh b/otk/label.hh
index 3bb931d6..f43ed71a 100644
--- a/otk/label.hh
+++ b/otk/label.hh
@@ -31,13 +31,13 @@ public:
const Font *font() const { return _font; }
virtual void setFont(const Font *f);
- virtual void calcDefaultSizes();
-
virtual void styleChanged(const RenderStyle &style);
virtual void renderForeground(Surface &surface);
protected:
+ virtual void calcDefaultSizes();
+
//! The color the label will use for rendering its text
RenderColor *_forecolor;