mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 16:10:37 +00:00
More CGFloat, NSUInteger and NSInteger changes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36163 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6880e50086
commit
8793a644bd
20 changed files with 211 additions and 182 deletions
|
@ -168,7 +168,7 @@ typedef struct _tableViewFlags
|
|||
* This is used by the -sizeToFit method
|
||||
*/
|
||||
typedef struct {
|
||||
float width;
|
||||
CGFloat width;
|
||||
BOOL isMax;
|
||||
} columnSorting;
|
||||
|
||||
|
@ -180,7 +180,7 @@ void quick_sort_internal(columnSorting *data, int p, int r)
|
|||
{
|
||||
int q;
|
||||
{
|
||||
float x = data[p].width;
|
||||
CGFloat x = data[p].width;
|
||||
BOOL y = data[p].isMax;
|
||||
int i = p - 1;
|
||||
int j = r + 1;
|
||||
|
@ -2532,13 +2532,13 @@ static void computeNewSelection
|
|||
return _intercellSpacing;
|
||||
}
|
||||
|
||||
- (void) setRowHeight: (float)rowHeight
|
||||
- (void) setRowHeight: (CGFloat)rowHeight
|
||||
{
|
||||
_rowHeight = rowHeight;
|
||||
[self tile];
|
||||
}
|
||||
|
||||
- (float) rowHeight
|
||||
- (CGFloat) rowHeight
|
||||
{
|
||||
return _rowHeight;
|
||||
}
|
||||
|
@ -5076,7 +5076,7 @@ This method is deprecated, use -columnIndexesInRect:. */
|
|||
{
|
||||
NSRect columnRect = [self rectOfColumn: columnIndex];
|
||||
NSRect visibleRect = [self visibleRect];
|
||||
float diff;
|
||||
CGFloat diff;
|
||||
|
||||
// If the row is out on the left, or it is partially visible
|
||||
// on the left
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue