mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-21 10:51:23 +00:00
* 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:
parent
3c4e7d11d7
commit
63335271a6
7 changed files with 21 additions and 11 deletions
10
ChangeLog
10
ChangeLog
|
@ -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
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
};
|
||||
|
||||
+ (GSWDisplayGroup* )displayGroup;
|
||||
- (id)undoManager;
|
||||
- (EOUndoManager *)undoManager;
|
||||
- (NSArray *)allObjects;
|
||||
- (NSArray *)allQualifierOperators;
|
||||
- (unsigned)batchCount;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
-(BOOL)isVisible;
|
||||
-(GSWComponent*)toggleVisibilityAction;
|
||||
-(NSString*)imageFileName;
|
||||
-(id)label;
|
||||
-(NSString *)label;
|
||||
-(NSString*)helpString;
|
||||
-(BOOL)isDisabled;
|
||||
-(BOOL)shouldDisplay;
|
||||
|
|
|
@ -133,7 +133,7 @@ RCS_ID("$Id$")
|
|||
};
|
||||
|
||||
//-----------------------------------------------------------------------------------
|
||||
-(NSString*)label
|
||||
-(NSString *)label
|
||||
{
|
||||
NSString* _label=nil;
|
||||
|
||||
|
|
|
@ -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"];
|
||||
|
|
|
@ -319,9 +319,9 @@ RCS_ID("$Id$")
|
|||
|
||||
//--------------------------------------------------------------------
|
||||
// uri
|
||||
-(NSString*)uri
|
||||
-(WODynamicURLString *)uri
|
||||
{
|
||||
return (NSString*)_uri;
|
||||
return (WODynamicURLString *)_uri;
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue