mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* GSWDatabase/WODisplayGroup.[h|m]
* GSWeb/GSWUtils.[h|m] no need for categories to reimplement things already defined in their primary class git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@36249 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ba2bc5df95
commit
a2021d67ea
5 changed files with 12 additions and 2 deletions
|
@ -16,6 +16,10 @@
|
|||
do not use redundant stringWithString:
|
||||
* GSWeb/GSWContext.m
|
||||
move @interface before @implementation
|
||||
* GSWDatabase/WODisplayGroup.[h|m]
|
||||
* GSWeb/GSWUtils.[h|m]
|
||||
no need for categories to reimplement things
|
||||
already defined in their primary class
|
||||
|
||||
2013-03-02 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* regenerate configure from configure.ac
|
||||
|
|
|
@ -158,8 +158,6 @@
|
|||
- (void)awakeFromKeyValueUnarchiver:(EOKeyValueUnarchiver*)object;
|
||||
- (NSMutableDictionary *)inputObjectForQualifier;
|
||||
- (BOOL)inQueryMode;
|
||||
-(void) editingContext:(EOEditingContext*)editingContext
|
||||
presentErrorMessage:(NSString*)msg;
|
||||
- (id)insert;
|
||||
- (id)insertAfterLastObject;
|
||||
- (NSDictionary *)insertedObjectDefaultValues;
|
||||
|
|
|
@ -54,6 +54,8 @@ static BOOL globalDefaultForValidatesChangesImmediately = NO;
|
|||
@interface WODisplayGroup (Private)
|
||||
-(void)finishInitialization;
|
||||
-(void)_setUpForNewDataSource;
|
||||
-(void) editingContext:(EOEditingContext*)editingContext
|
||||
presentErrorMessage:(NSString*)msg;
|
||||
-(void)_presentAlertWithTitle:(id)title
|
||||
message:(id)msg;
|
||||
-(void)_addQualifiersToArray:(NSMutableArray*)array
|
||||
|
|
|
@ -263,7 +263,10 @@ GSWEB_EXPORT NSString* GSWGetDefaultDocRoot();
|
|||
@interface NSObject (NSObjectVoid)
|
||||
-(id)nilMethod;
|
||||
+(id)nilMethod;
|
||||
#ifndef GNUSTEP_BASE_LIBRARY
|
||||
// defined in gnustep-base NSObject
|
||||
-(NSString*)className;
|
||||
#endif
|
||||
+(NSString*)className;
|
||||
-(id)performSelectorIfPossible:(SEL)aSelector;
|
||||
-(id)performSelectorIfPossible:(SEL)aSelector
|
||||
|
|
|
@ -929,11 +929,14 @@ void ValidationExceptionRaiseFn0(const char *func,
|
|||
return nil;
|
||||
};
|
||||
|
||||
#ifndef GNUSTEP_BASE_LIBRARY
|
||||
// defined in gnustep-base NSObject
|
||||
//--------------------------------------------------------------------
|
||||
-(NSString*)className
|
||||
{
|
||||
return NSStringFromClass([self class]);
|
||||
};
|
||||
#endif
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
+(NSString*)className
|
||||
|
|
Loading…
Reference in a new issue