mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
[NSTableView -sizeToFit]: replace floorf with floor
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11314 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a8e28ba039
commit
a342cf5aae
1 changed files with 1 additions and 1 deletions
|
@ -2267,7 +2267,7 @@ byExtendingSelection: (BOOL)flag
|
|||
}
|
||||
else
|
||||
{
|
||||
int remainingInt = floorf(remainingWidth);
|
||||
int remainingInt = floor(remainingWidth);
|
||||
int quotient = remainingInt / numberOfCurrentColumns;
|
||||
int remainder = remainingInt - quotient * numberOfCurrentColumns;
|
||||
int oldRemainder = remainder;
|
||||
|
|
Loading…
Reference in a new issue