mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 15:00:38 +00:00
Added suport for model loading.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2665 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e46ccd1acf
commit
07252e51bb
33 changed files with 2684 additions and 43 deletions
|
@ -947,6 +947,20 @@ static NSRecursiveLock *gnustep_gui_nsview_lock = nil;
|
|||
_nextSiblingSubviewThatNeedsDisplay = NULL;
|
||||
}
|
||||
|
||||
- (void)_unconditionallyResetNeedsDisplayInAllViews
|
||||
{
|
||||
int i, count;
|
||||
|
||||
_subviewsThatNeedDisplay = NULL;
|
||||
_nextSiblingSubviewThatNeedsDisplay = NULL;
|
||||
|
||||
if (!sub_views || !(count = [sub_views count]))
|
||||
return;
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
[[sub_views objectAtIndex:i] _unconditionallyResetNeedsDisplayInAllViews];
|
||||
}
|
||||
|
||||
- (void)_displayNeededViews
|
||||
{
|
||||
NSView* subview;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue