Commit 283fee16 authored by David Fuhrmann's avatar David Fuhrmann

macosx: do not translate name of config items

parent 8ab8c750
......@@ -484,9 +484,8 @@ static VLCPrefs *_o_sharedMainInstance = nil;
- (id)initWithConfigItem: (module_config_t *) configItem
{
NSString * name = _NS(configItem->psz_name);
NSString *name = toNSStr(configItem->psz_name);
self = [super initWithName:name];
[name release];
if (self != nil)
_configItem = configItem;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment