mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-21 14:00:57 +00:00
Added missing #includes and fixed minor dealloc problem
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13441 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d235c3722f
commit
d7d52ad0b1
1 changed files with 10 additions and 0 deletions
|
@ -41,6 +41,10 @@
|
||||||
#include <Foundation/NSValue.h>
|
#include <Foundation/NSValue.h>
|
||||||
#include <Foundation/NSArray.h>
|
#include <Foundation/NSArray.h>
|
||||||
#include <Foundation/NSAutoreleasePool.h>
|
#include <Foundation/NSAutoreleasePool.h>
|
||||||
|
#include <Foundation/NSException.h>
|
||||||
|
#include <Foundation/NSNotification.h>
|
||||||
|
#include <Foundation/NSFormatter.h>
|
||||||
|
#include <Foundation/NSDebug.h>
|
||||||
#include <Foundation/NSString.h>
|
#include <Foundation/NSString.h>
|
||||||
#include <Foundation/NSZone.h>
|
#include <Foundation/NSZone.h>
|
||||||
|
|
||||||
|
@ -259,6 +263,12 @@ static SEL getSel;
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
if (_textObject != nil)
|
||||||
|
{
|
||||||
|
[_selectedCell endEditing: _textObject];
|
||||||
|
_textObject = nil;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; i < _maxRows; i++)
|
for (i = 0; i < _maxRows; i++)
|
||||||
{
|
{
|
||||||
int j;
|
int j;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue