mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-19 09:40:59 +00:00
int -> NSUInteger, call sizeToCells
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@30518 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
981cb4903f
commit
5095e6dfe9
2 changed files with 7 additions and 2 deletions
|
@ -131,13 +131,14 @@ NSString *EOMSelectionChangedNotification = @"EOModelerSelectionChanged";
|
|||
/* inspectors is ordered in the lowest -displayOrder first. */
|
||||
id selection = [swvop objectAtIndex:0];
|
||||
NSArray *inspectors;
|
||||
int i, c;
|
||||
NSUInteger i, c;
|
||||
|
||||
inspectors = [EOMInspector allInspectorsThatCanInspectObject: selection];
|
||||
c = [inspectors count];
|
||||
[_iconBar renewRows:1 columns:c];
|
||||
[_iconBar sizeToCells];
|
||||
[_iconBar setNeedsDisplay:YES];
|
||||
|
||||
|
||||
if (c)
|
||||
{
|
||||
for (i = 0; i < c; i++)
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-31 David Wetzel <dave@turbocat.de>
|
||||
* Apps/EOModeler/EOMInspectorController.m
|
||||
int -> NSUInteger, call sizeToCells
|
||||
|
||||
2010-05-30 David Wetzel <dave@turbocat.de>
|
||||
* EOAccess/EOAttribute.m: reformat
|
||||
* EOAccess/EOAdaptor.m
|
||||
|
|
Loading…
Reference in a new issue