can you do the inverse

This commit is contained in:
tildearrow 2022-06-24 13:28:11 -05:00
parent 3366099dbe
commit 1ffca9bea2
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ static NSArray *BuildAllowedFileTypes( const std::vector<std::string>& filterLis
// NSMutableArray *buildFilterList = NSMutableArray::alloc()->init(); // NSMutableArray *buildFilterList = NSMutableArray::alloc()->init();
NSMutableArray *buildFilterList = [[NSMutableArray alloc] init]; NSMutableArray *buildFilterList = [[NSMutableArray alloc] init];
String typebuf; std::string typebuf;
for (std::string& i: filterList) { for (std::string& i: filterList) {
typebuf=""; typebuf="";
for (char& j: i) { for (char& j: i) {
@ -30,7 +30,7 @@ static NSArray *BuildAllowedFileTypes( const std::vector<std::string>& filterLis
// or this: NSString::stringWithUTF8String(typebuf); // or this: NSString::stringWithUTF8String(typebuf);
// buildFilterList->addObject(thisType); // buildFilterList->addObject(thisType);
// really? did you have to make this mess?! // really? did you have to make this mess?!
NSString *thisType = [NSString stringWithUTF8String: [typebuf c_str]]; NSString *thisType = NSString::stringWithUTF8String(typebuf.c_str());
[buildFilterList addObject:thisType]; [buildFilterList addObject:thisType];
typebuf=""; typebuf="";
} else if (j!='.' && j!='*') { } else if (j!='.' && j!='*') {
@ -39,7 +39,7 @@ static NSArray *BuildAllowedFileTypes( const std::vector<std::string>& filterLis
} }
if (!typebuf.empty()) { if (!typebuf.empty()) {
// I don't think this will work, but come on... // I don't think this will work, but come on...
NSString *thisType = [NSString stringWithUTF8String: [typebuf c_str]]; NSString *thisType = NSString::stringWithUTF8String(typebuf.c_str());
[buildFilterList addObject:thisType]; [buildFilterList addObject:thisType];
} }
} }