mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
height is CGFloat
This commit is contained in:
parent
0ff4adfd42
commit
4004f549d7
3 changed files with 4 additions and 4 deletions
|
@ -57,7 +57,7 @@ typedef enum {
|
|||
GSToolbarClippedItemsButton *_clippedItemsMark;
|
||||
unsigned int _borderMask;
|
||||
NSRect _rectAvailable;
|
||||
float _heightFromLayout;
|
||||
CGFloat _heightFromLayout;
|
||||
}
|
||||
|
||||
+ (NSUInteger) draggedItemIndex;
|
||||
|
|
|
@ -821,9 +821,9 @@ static NSUInteger draggedItemIndex = NSNotFound;
|
|||
|
||||
// Accessors private methods
|
||||
|
||||
- (float) _heightFromLayout
|
||||
- (CGFloat) _heightFromLayout
|
||||
{
|
||||
float height = _heightFromLayout;
|
||||
CGFloat height = _heightFromLayout;
|
||||
|
||||
if (_borderMask & GSToolbarViewBottomBorder)
|
||||
{
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
- (void) _reload;
|
||||
|
||||
// Accessors
|
||||
- (float) _heightFromLayout;
|
||||
- (CGFloat) _heightFromLayout;
|
||||
- (NSArray *) _visibleBackViews;
|
||||
|
||||
- (BOOL) _usesStandardBackgroundColor;
|
||||
|
|
Loading…
Reference in a new issue