mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
Fix int vs. float
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@37091 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c0007e5b0a
commit
d7830b79c8
2 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,9 @@
|
|||
* Modules/Projects/ResourceSet/PCResourceSetProject.m
|
||||
Replace deprecated make variable.
|
||||
|
||||
* Framework/PCProjectBuilder.m
|
||||
Fix int vs. float.
|
||||
|
||||
2013-02-25: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* Framework/PCFileNameIcon.m
|
||||
* unsigned int -> NSDragOperation
|
||||
|
|
|
@ -1175,7 +1175,7 @@
|
|||
NSNumber *cNumber = [NSNumber numberWithInt:cInt];
|
||||
|
||||
position = [NSString stringWithFormat:@"{x=%i; y=%i}",
|
||||
[lNumber intValue], [cNumber floatValue]];
|
||||
[lNumber intValue], [cNumber intValue]];
|
||||
}
|
||||
// message
|
||||
substr = [NSString stringWithFormat:@"%@:", type];
|
||||
|
|
Loading…
Reference in a new issue