summaryrefslogtreecommitdiff
path: root/otk/style.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-24 23:31:38 +0000
committerDana Jansens <danakj@orodu.net>2002-12-24 23:31:38 +0000
commitbf49e7642027f576716e5742544c282f4396f9ef (patch)
treeb5ea1942e661a35330ce19443b2b8fd6c33019ef /otk/style.hh
parent5a139f7263e33b499836f5df9ac37400e02c32f9 (diff)
python. no more guile. python.
Diffstat (limited to 'otk/style.hh')
-rw-r--r--otk/style.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/otk/style.hh b/otk/style.hh
index ec9f3f8d..f7584c3e 100644
--- a/otk/style.hh
+++ b/otk/style.hh
@@ -125,10 +125,10 @@ public:
inline TextJustify textJustify(void) { return justify; }
inline BulletType bulletType(void) { return bullet_type; }
- inline const BColor &getBorderColor() const { return border_color; }
+ inline const BColor *getBorderColor() const { return &border_color; }
- inline const BTexture &getFrameFocus() const { return f_focus; }
- inline const BTexture &getFrameUnfocus() const { return f_unfocus; }
+ inline const BTexture *getFrameFocus() const { return &f_focus; }
+ inline const BTexture *getFrameUnfocus() const { return &f_unfocus; }
inline void setImageControl(BImageControl *c) {
image_control = c;