X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Ffocuswidget.hh;h=886a2e3194746dfff03e763c198813073924f817;hb=b5963e0e5393e62ecdcdd6df65e5cdf4482276f8;hp=b951dcbd468dfe958fc4520050236015a1310eb3;hpb=d8d9b42777ace234f3471918e1210062578f8188;p=chaz%2Fopenbox 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; }; }