* EOControl/EOPriv.h/m (GDL2_shellPatternCharacterSet): Remove.

(GDL2PrivInit): Remove usage of GDL2_shellPatternCharacterSet.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@20731 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2005-02-16 08:28:27 +00:00
parent c16e28c931
commit e3a74b3562
3 changed files with 2 additions and 4 deletions

View file

@ -5,6 +5,8 @@
* EOControl/EONSAddOns.h/m ([NSString-hasShellPatternCharacter]):
Remove.
* EOControl/EOPriv.h/m (GDL2_shellPatternCharacterSet): Remove.
(GDL2PrivInit): Remove usage of GDL2_shellPatternCharacterSet.
2005-02-15 David Ayers <d.ayers@inode.at>

View file

@ -147,7 +147,6 @@ GDL2CONTROL_EXPORT IMP GDL2NSMutableDictionary_dictionaryWithCapacityIMP;
GDL2CONTROL_EXPORT NSNumber* GDL2NSNumberBool_Yes;
GDL2CONTROL_EXPORT NSNumber* GDL2NSNumberBool_No;
GDL2CONTROL_EXPORT EONull* GDL2EONull;
GDL2CONTROL_EXPORT NSCharacterSet* GDL2_shellPatternCharacterSet;
// ==== Init Method ====
GDL2CONTROL_EXPORT void GDL2PrivInit();

View file

@ -158,8 +158,6 @@ NSNumber* GDL2NSNumberBool_No=nil;
EONull* GDL2EONull=nil;
NSCharacterSet* GDL2_shellPatternCharacterSet=nil;
// ==== Init Method ====
void GDL2PrivInit()
{
@ -306,6 +304,5 @@ void GDL2PrivInit()
ASSIGN(GDL2EONull,[EONull null]);
ASSIGN(GDL2_shellPatternCharacterSet,([NSCharacterSet characterSetWithCharactersInString:@"*?%_"]));
};
}