More CGFloat, NSUInteger and NSInteger changes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36154 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2013-02-17 00:49:04 +00:00
parent a7a48ea407
commit 6a52d99499
16 changed files with 211 additions and 207 deletions

View file

@ -168,7 +168,7 @@
/**<p>Sets the width of the NSFormCell's title to width. All NSFormCell
of the NSForm are updated</p><p>See Also: -titleWidth</p>
*/
- (void)setTitleWidth: (float)width
- (void)setTitleWidth: (CGFloat)width
{
if (width >= 0)
{
@ -243,7 +243,7 @@
// manually with setTitleWidth: disables any alignment with other
// cells.
//
- (float)titleWidth
- (CGFloat)titleWidth
{
if (_formcell_auto_title_width == NO)
return _displayedTitleWidth;
@ -254,7 +254,7 @@
}
}
- (float)titleWidth: (NSSize)aSize
- (CGFloat)titleWidth: (NSSize)aSize
{
if (_formcell_auto_title_width == NO)
return _displayedTitleWidth;