Fixed: CPColor and CPView implemented the category CPTheme

This commit is contained in:
Alexandre Wilhelm
2015-10-02 10:12:50 -07:00
parent c8d768c59a
commit 860decdac5
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ var cachedBlackColor,
<p>It also provides some class helper methods that
returns instances of commonly used colors.</p>
*/
@implementation CPColor : CPObject
@implementation CPColor : CPObject <CPTheme>
{
CPArray _components;
+1 -1
View File
@@ -149,7 +149,7 @@ var CPViewHighDPIDrawingEnabled = YES;
appearance. Other methods of CPView and CPResponder can
also be overridden to handle user generated events.
*/
@implementation CPView : CPResponder
@implementation CPView : CPResponder <CPTheme>
{
CPWindow _window;
+1 -1
View File
@@ -54,7 +54,7 @@ var CPViewThemeClassKey = @"CPViewThemeClassKey",
@end
@implementation CPObject (ObjectTheming) <CPTheme>
@implementation CPObject (ObjectTheming)
{
// Theming Support
CPTheme _theme;