diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-24 23:31:38 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-24 23:31:38 +0000 |
| commit | bf49e7642027f576716e5742544c282f4396f9ef (patch) | |
| tree | b5ea1942e661a35330ce19443b2b8fd6c33019ef /otk/style.hh | |
| parent | 5a139f7263e33b499836f5df9ac37400e02c32f9 (diff) | |
python. no more guile. python.
Diffstat (limited to 'otk/style.hh')
| -rw-r--r-- | otk/style.hh | 6 |
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; |
