Use std::string ctor
This commit is contained in:
parent
8500538793
commit
b30f7c3c94
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ static NSTouchBarItemIdentifier SliderIdentifier = @"com.electron.touchbar.slide
|
|||
|
||||
- (NSTouchBarItem*)makePopoverForID:(NSString*)id
|
||||
withIdentifier:(NSString*)identifier {
|
||||
std::string s_id = std::string([id UTF8String]);
|
||||
std::string s_id([id UTF8String]);
|
||||
if (![self hasItemWithID:s_id]) return nil;
|
||||
|
||||
mate::PersistentDictionary options = item_id_map[s_id];
|
||||
|
|
Loading…
Reference in a new issue