this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

On OS X, k* string constants are often typically exported with a "Key" suffix. Make it work.

+10
+10
src/libobjcdarwin/NameTranslate.cpp
··· 68 68 return true; 69 69 } 70 70 #endif 71 + else if (*name == 'k') 72 + { 73 + // TODO: this may be worth doing differently 74 + char* pos = strstr(name, "Key"); 75 + if (pos == name + strlen(name) - 3) 76 + { 77 + *pos = 0; 78 + return true; 79 + } 80 + } 71 81 72 82 return false; 73 83 }