* GSWDatabase/WODisplayGroup.h

* GSWDatabase/WODisplayGroup.m
        * GSWExtensions/GSWCollapsibleComponentContent.h
        * GSWExtensions/GSWCollapsibleComponentContent.m
        * GSWExtensions/GSWDictionaryRepetition.m
        * GSWeb/GSWRequest.m
          make the methods in the interface match the 
          methods in the implementation


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@36252 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
buzzdee 2013-03-03 18:11:52 +00:00
parent 3c4e7d11d7
commit 63335271a6
7 changed files with 21 additions and 11 deletions

View file

@ -1,3 +1,13 @@
2013-03-03 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* GSWDatabase/WODisplayGroup.h
* GSWDatabase/WODisplayGroup.m
* GSWExtensions/GSWCollapsibleComponentContent.h
* GSWExtensions/GSWCollapsibleComponentContent.m
* GSWExtensions/GSWDictionaryRepetition.m
* GSWeb/GSWRequest.m
make the methods in the interface match the
methods in the implementation
2013-03-02 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* GSWeb/GSWSessionTimeOutManager.h
GSWSessionTimeOutManager conforms to NSLocking protocol

View file

@ -113,7 +113,7 @@
};
+ (GSWDisplayGroup* )displayGroup;
- (id)undoManager;
- (EOUndoManager *)undoManager;
- (NSArray *)allObjects;
- (NSArray *)allQualifierOperators;
- (unsigned)batchCount;

View file

@ -56,8 +56,8 @@ static BOOL globalDefaultForValidatesChangesImmediately = NO;
-(void)_setUpForNewDataSource;
-(void) editingContext:(EOEditingContext*)editingContext
presentErrorMessage:(NSString*)msg;
-(void)_presentAlertWithTitle:(id)title
message:(id)msg;
-(void)_presentAlertWithTitle:(NSString *)title
message:(NSString *)msg;
-(void)_addQualifiersToArray:(NSMutableArray*)array
forValues:(NSDictionary*)values
operatorSelector:(SEL)sel;

View file

@ -41,7 +41,7 @@
-(BOOL)isVisible;
-(GSWComponent*)toggleVisibilityAction;
-(NSString*)imageFileName;
-(id)label;
-(NSString *)label;
-(NSString*)helpString;
-(BOOL)isDisabled;
-(BOOL)shouldDisplay;

View file

@ -133,7 +133,7 @@ RCS_ID("$Id$")
};
//-----------------------------------------------------------------------------------
-(NSString*)label
-(NSString *)label
{
NSString* _label=nil;

View file

@ -89,13 +89,13 @@ RCS_ID("$Id$")
return nil;
};
-(void)setCurrentKey:(id)key
-(void)setCurrentKey:(NSString *)aKey
{
id value = nil;
NSDebugMLLog(@"gswdync",@"key=%@",key);
value=[[self dictionary] objectForKey:key];
NSDebugMLLog(@"gswdync",@"key=%@",aKey);
value=[[self dictionary] objectForKey:aKey];
NSDebugMLLog(@"gswdync",@"value=%@",value);
[self setValue:key
[self setValue:aKey
forBinding:@"key"];
[self setValue:value
forBinding:@"item"];

View file

@ -319,9 +319,9 @@ RCS_ID("$Id$")
//--------------------------------------------------------------------
// uri
-(NSString*)uri
-(WODynamicURLString *)uri
{
return (NSString*)_uri;
return (WODynamicURLString *)_uri;
};
//--------------------------------------------------------------------