diff options
Diffstat (limited to 'otk/focuswidget.hh')
| -rw-r--r-- | otk/focuswidget.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/otk/focuswidget.hh b/otk/focuswidget.hh index b951dcbd..886a2e31 100644 --- a/otk/focuswidget.hh +++ b/otk/focuswidget.hh @@ -18,16 +18,16 @@ public: virtual void unfocus(void); virtual void setTexture(RenderTexture *texture); - virtual void setBorderColor(const Color *color); + virtual void setBorderColor(const RenderColor *color); inline void setUnfocusTexture(RenderTexture *texture) { _unfocus_texture = texture; } inline RenderTexture *getUnfocusTexture(void) const { return _unfocus_texture; } - inline void setUnfocusBorderColor(const Color *color) + inline void setUnfocusBorderColor(const RenderColor *color) { _unfocus_bcolor = color; } - inline const Color *getUnfocusBorderColor(void) const + inline const RenderColor *getUnfocusBorderColor(void) const { return _unfocus_bcolor; } inline bool isFocused(void) const { return _focused; } @@ -38,8 +38,8 @@ private: RenderTexture *_unfocus_texture; RenderTexture *_focus_texture; - const Color *_unfocus_bcolor; - const Color *_focus_bcolor; + const RenderColor *_unfocus_bcolor; + const RenderColor *_focus_bcolor; }; } |
