mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOInterface/EODisplayGroup.m (_qualifierForKey:value:defaultOperator:):
* EOAccess/EOUtilities.m (-rawRowsWithStoredProcedureNamed:arguments:): * EOAccess/EOSQLExpression.m (addInsertListAttribute:value:): * GDL2Palette/ConnectionInspector.m (_keysFromClassDescription:): * DBModeler/Inspectors/AttributeInspector.m (setValueType:): Initialize variables. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@30114 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
abd5a8bd20
commit
2960b436cf
6 changed files with 14 additions and 8 deletions
|
@ -11,10 +11,17 @@
|
|||
* EOControl/EOGenericRecord.m
|
||||
(-_infoForInstanceVariableNamed:stringName:retType:retSize:retOffset:):
|
||||
Rearrange initialization to avoid warning.
|
||||
|
||||
* EOInterface/EODisplayGroup.m (_qualifierForKey:value:defaultOperator:):
|
||||
* EOAccess/EOUtilities.m (-rawRowsWithStoredProcedureNamed:arguments:):
|
||||
* EOAccess/EOSQLExpression.m (addInsertListAttribute:value:):
|
||||
* GDL2Palette/ConnectionInspector.m (_keysFromClassDescription:):
|
||||
* DBModeler/Inspectors/AttributeInspector.m (setValueType:):
|
||||
* EOControl/EOSharedEditingContext.m
|
||||
(-objectsByEntityName, -objectsByEntityNameAndFetchSpecificationName)
|
||||
(objectForGlobalID:,faultForGlobalID:editingContext:,registeredObjects):
|
||||
Initialize variables.
|
||||
|
||||
|
||||
2010-04-09 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/*
|
||||
AttributesInspector.m
|
||||
|
||||
|
@ -239,7 +238,7 @@
|
|||
- (IBAction) setValueType:(id)sender
|
||||
{
|
||||
EOAttribute *obj = [self selectedObject];
|
||||
NSString *valueType;
|
||||
NSString *valueType = nil;
|
||||
|
||||
if (sender == _valueTypeSelect)
|
||||
{
|
||||
|
|
|
@ -1108,9 +1108,9 @@ NSString *EOBindVariableColumnKey = @"EOBindVariableColumnKey";
|
|||
//OK
|
||||
NSMutableString *valueList=nil;
|
||||
NSString *writeFormat=nil;
|
||||
NSString *valueSQLString;
|
||||
NSString *valueSQLString=nil;
|
||||
NSMutableString *listString;
|
||||
NSString *attributeSQLString;
|
||||
NSString *attributeSQLString=nil;
|
||||
|
||||
EOFLOGObjectFnStartCond(@"EOSQLExpression");
|
||||
|
||||
|
|
|
@ -671,7 +671,7 @@ NSString *EOMoreThanOneException = @"EOMoreThanOneException";
|
|||
EODatabaseChannel *databaseChannel;
|
||||
EOAdaptorChannel *adaptorChannel;
|
||||
EOStoredProcedure *storedProcedure;
|
||||
NSMutableArray *results;
|
||||
NSMutableArray *results = nil;
|
||||
NSDictionary *row;
|
||||
|
||||
storedProcedure = [[self modelGroup] storedProcedureNamed: name];
|
||||
|
|
|
@ -462,7 +462,7 @@ static BOOL _globalDefaultForValidatesChangesImmediately = NO;
|
|||
defaultOperator:(char)defaultOp
|
||||
{
|
||||
NSString *op;
|
||||
SEL selector;
|
||||
SEL selector = NULL;
|
||||
NSString *fmt = nil;
|
||||
|
||||
EOClassDescription *classDesc = [_dataSource classDescriptionForObjects];
|
||||
|
|
|
@ -196,8 +196,8 @@
|
|||
|
||||
for (i = 0; i < 3; i++)
|
||||
{
|
||||
int type;
|
||||
NSArray *tmp;
|
||||
int type = 0;
|
||||
NSArray *tmp = nil;
|
||||
|
||||
switch(i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue