mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* Source/NSFontPanel.m
* Some int -> NSInteger and float -> CGFloat transitions OK Fred git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@37635 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1549ee2fa9
commit
74e1e2b088
2 changed files with 11 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-01-26 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
|
||||
* Source/NSFontPanel.m
|
||||
* Some int -> NSInteger and float -> CGFloat transitions
|
||||
|
||||
2014-01-24 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Source/NSTextView.m (-doCommandBySelector:): Pass nil argument
|
||||
|
|
|
@ -1106,7 +1106,7 @@ static int score_difference(int weight1, int traits1,
|
|||
}
|
||||
|
||||
|
||||
- (int) browser: (NSBrowser*)sender numberOfRowsInColumn: (int)column
|
||||
- (NSInteger) browser: (NSBrowser*)sender numberOfRowsInColumn: (NSInteger)column
|
||||
{
|
||||
switch ([sender tag])
|
||||
{
|
||||
|
@ -1129,7 +1129,7 @@ static int score_difference(int weight1, int traits1,
|
|||
}
|
||||
}
|
||||
|
||||
- (NSString*) browser: (NSBrowser*)sender titleOfColumn: (int)column
|
||||
- (NSString*) browser: (NSBrowser*)sender titleOfColumn: (NSInteger)column
|
||||
{
|
||||
switch ([sender tag])
|
||||
{
|
||||
|
@ -1188,7 +1188,7 @@ static int score_difference(int weight1, int traits1,
|
|||
}
|
||||
|
||||
- (BOOL) browser: (NSBrowser *)sender
|
||||
isColumnValid: (int)column;
|
||||
isColumnValid: (NSInteger)column;
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
@ -1198,9 +1198,9 @@ static int score_difference(int weight1, int traits1,
|
|||
@implementation NSFontPanel (NSSplitViewDelegate)
|
||||
|
||||
- (void) splitView: (NSSplitView *)splitView
|
||||
constrainMinCoordinate: (float *)min
|
||||
maxCoordinate: (float *)max
|
||||
ofSubviewAt: (int)offset
|
||||
constrainMinCoordinate: (CGFloat *)min
|
||||
maxCoordinate: (CGFloat *)max
|
||||
ofSubviewAt: (NSInteger)offset
|
||||
{
|
||||
*max = *max - 100;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue