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:
Riccardo Mottola 2013-09-17 17:18:38 +00:00
parent c0007e5b0a
commit d7830b79c8
2 changed files with 4 additions and 1 deletions

View file

@ -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

View file

@ -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];