mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 20:00:48 +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
bb52b91896
commit
fc360f7709
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>
|
2014-01-24 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||||
|
|
||||||
* Source/NSTextView.m (-doCommandBySelector:): Pass nil argument
|
* 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])
|
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])
|
switch ([sender tag])
|
||||||
{
|
{
|
||||||
|
@ -1188,7 +1188,7 @@ static int score_difference(int weight1, int traits1,
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL) browser: (NSBrowser *)sender
|
- (BOOL) browser: (NSBrowser *)sender
|
||||||
isColumnValid: (int)column;
|
isColumnValid: (NSInteger)column;
|
||||||
{
|
{
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
@ -1198,9 +1198,9 @@ static int score_difference(int weight1, int traits1,
|
||||||
@implementation NSFontPanel (NSSplitViewDelegate)
|
@implementation NSFontPanel (NSSplitViewDelegate)
|
||||||
|
|
||||||
- (void) splitView: (NSSplitView *)splitView
|
- (void) splitView: (NSSplitView *)splitView
|
||||||
constrainMinCoordinate: (float *)min
|
constrainMinCoordinate: (CGFloat *)min
|
||||||
maxCoordinate: (float *)max
|
maxCoordinate: (CGFloat *)max
|
||||||
ofSubviewAt: (int)offset
|
ofSubviewAt: (NSInteger)offset
|
||||||
{
|
{
|
||||||
*max = *max - 100;
|
*max = *max - 100;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue