mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 11:41:05 +00:00
* Palettes/2Controls/GormFormAttributesInspector.m
fix some format string warnings git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@37926 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5cdfadcb56
commit
2e1fc7f286
2 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
|||
2014-05-30 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* Palettes/2Controls/GormColorWellAttributesInspector.h
|
||||
fix typo in header guard
|
||||
* Palettes/2Controls/GormFormAttributesInspector.m
|
||||
fix some format string warnings
|
||||
|
||||
2014-05-28 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
|
|
|
@ -181,7 +181,7 @@ NSUInteger numberStepperValue;
|
|||
}
|
||||
else
|
||||
{
|
||||
[object addEntry: [NSString stringWithFormat: @"Field (%i)", rows]];
|
||||
[object addEntry: [NSString stringWithFormat: @"Field (%ld)", (long)rows]];
|
||||
}
|
||||
}
|
||||
cell.height = (rect.size.height + inter.height) / fields - inter.height;
|
||||
|
@ -199,7 +199,7 @@ NSUInteger numberStepperValue;
|
|||
|
||||
while(delta > 0)
|
||||
{
|
||||
[object addEntry: [NSString stringWithFormat: @"Field (%i)", rows]];
|
||||
[object addEntry: [NSString stringWithFormat: @"Field (%ld)", (long)rows]];
|
||||
delta--;
|
||||
rows++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue