Skip to content

Commit

Permalink
added stubs for some methods that were dynamically generated
Browse files Browse the repository at this point in the history
  • Loading branch information
malkomalko committed Nov 20, 2009
1 parent 7ee0256 commit 64daa8e
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 42 deletions.
84 changes: 42 additions & 42 deletions Support/nib/Completion.nib/designable.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Support/nib/Completion.nib/keyedobjects.nib
Binary file not shown.
92 changes: 92 additions & 0 deletions Support/source/CPControl.j
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,98 @@ var CPControlBlackColor = [CPColor blackColor];
return [self valueForThemeAttribute:ATTRIBUTENAME];\
}

/*!
- (void)setAlignment:(id)aValue
{
}
- (id)alignment
{
}
- (void)setVerticalAlignment:(id)aValue
{
}
- (id)verticalAlignment
{
}
- (void)setLineBreakMode:(id)aValue
{
}
- (id)lineBreakMode
{
}
- (void)setTextColor:(id)aValue
{
}
- (id)textColor
{
}
- (void)setFont:(id)aValue
{
}
- (id)font
{
}
- (void)setTextShadowColor:(id)aValue
{
}
- (id)textShadowColor
{
}
- (void)setTextShadowOffset:(id)aValue
{
}
- (id)textShadowOffset
{
}
- (void)setImagePosition:(id)aValue
{
}
- (id)imagePosition
{
}
- (void)setImageScaling:(id)aValue
{
}
- (id)imageScaling
{
}
*/

BRIDGE(Alignment, alignment, "alignment")
BRIDGE(VerticalAlignment, verticalAlignment, "vertical-alignment")
BRIDGE(LineBreakMode, lineBreakMode, "line-break-mode")
Expand Down

0 comments on commit 64daa8e

Please sign in to comment.