mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOAdaptors/SQLiteAdaptor/SQLite3Adaptor.m
get rid of stray ; to make the loop work git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36296 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3b50ec44d4
commit
ad922a4d60
2 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,8 @@
|
|||
ivar_getTypeEncoding returns const char *
|
||||
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.h
|
||||
class conforms to NSTextFieldDelegate
|
||||
* EOAdaptors/SQLiteAdaptor/SQLite3Adaptor.m
|
||||
get rid of stray ; to make the loop work
|
||||
|
||||
2013-03-02: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* Apps/EOModelEditor/EOMEDocument.m
|
||||
|
|
|
@ -63,7 +63,7 @@ static NSString *types[][2] =
|
|||
NSString *external[sizeof(types)/sizeof(types[0])];
|
||||
NSString *internal[sizeof(types)/sizeof(types[0])];
|
||||
|
||||
for (i = 0; i < sizeof(types)/sizeof(types[0]); i++);
|
||||
for (i = 0; i < sizeof(types)/sizeof(types[0]); i++)
|
||||
{
|
||||
external[i] = types[i][0];
|
||||
internal[i] = types[i][1];
|
||||
|
|
Loading…
Reference in a new issue