mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-22 02:41:05 +00:00
Fixed assignment in while loop as reported by Stephane Corthesy. * EOControl/EOAndQualifier.m ([EOAndQualifier +qualifierWithQualifiers:]), ([EOAndQualifier -initWithQualifiers:]): Use GS_USEIDLIST to optimize vararg list to array conversion. * EOControl/EOOrQualifier.m ([EOOrQualifier +qualifierWithQualifiers:]), ([EOOrQualifier -initWithQualifiers:]): Ditto. * EOControl/EOClassDescription.m ([EOClassDescription +classDelegate]): Make access to static variable thread safe. * EOControl/EOEdtitingContext.m: Added declarations to avoid compiler warnings. 2003-05-02 Stephane Corthesy <stephane at sente dot ch> * EOControl/EOControl.h: Added inclusion of EOArrayDataSource.h. * EOControl/EOEdtitingContext.m: Added declaration of +[EOEditingContext(EOEditingContextPrivate) _observeUndoManagerNotifications] to avoid compiler warnings. * EOControl/EONSAddOns.m ([NSObject -resultsOfPerformingSelector:withEachObjectInArray:defaultResult:]): Added cast to avoid compiler warning. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@16613 72102866-910b-0410-8b05-ffd578937521
53 lines
1.7 KiB
C
53 lines
1.7 KiB
C
/*
|
|
EOControl.h
|
|
|
|
Copyright (C) 2000-2002 Free Software Foundation, Inc.
|
|
|
|
Author: Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
|
Date: February 2000
|
|
|
|
This file is part of the GNUstep Database Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; see the file COPYING.LIB.
|
|
If not, write to the Free Software Foundation,
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __EOControl_h__
|
|
#define __EOControl_h__
|
|
|
|
|
|
#include <EOControl/EOSortOrdering.h>
|
|
#include <EOControl/EOFetchSpecification.h>
|
|
#include <EOControl/EOGenericRecord.h>
|
|
#include <EOControl/EOClassDescription.h>
|
|
#include <EOControl/EOKeyValueCoding.h>
|
|
#include <EOControl/EOQualifier.h>
|
|
#include <EOControl/EONull.h>
|
|
#include <EOControl/EOKeyValueArchiver.h>
|
|
#include <EOControl/EOGlobalID.h>
|
|
#include <EOControl/EOKeyGlobalID.h>
|
|
#include <EOControl/EOObjectStore.h>
|
|
#include <EOControl/EOObjectStoreCoordinator.h>
|
|
#include <EOControl/EOFault.h>
|
|
#include <EOControl/EOEditingContext.h>
|
|
#include <EOControl/EODataSource.h>
|
|
#include <EOControl/EOArrayDataSource.h>
|
|
#include <EOControl/EODetailDataSource.h>
|
|
#include <EOControl/EOObserver.h>
|
|
#include <EOControl/EODebug.h>
|
|
|
|
|
|
#endif /* __EOControl_h__ */
|
|
|