[vlc-commits] macosx: fix error message for media information panel
David Fuhrmann
git at videolan.org
Wed Oct 21 22:39:59 CEST 2015
vlc/vlc-2.2 | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Wed Oct 21 22:39:02 2015 +0200| [dcc4f9f918b9caf70ab973dee72204a3a5a85d24] | committer: David Fuhrmann
macosx: fix error message for media information panel
not cherry picked from 10145e039042c1a15e92b47d7e88f1d632d9c6a1
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=dcc4f9f918b9caf70ab973dee72204a3a5a85d24
---
modules/gui/macosx/playlistinfo.m | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/macosx/playlistinfo.m b/modules/gui/macosx/playlistinfo.m
index 9ec4cf5..9e94701 100644
--- a/modules/gui/macosx/playlistinfo.m
+++ b/modules/gui/macosx/playlistinfo.m
@@ -363,9 +363,9 @@ static VLCInfo *_o_sharedInstance = nil;
return;
error:
- NSRunAlertPanel(_NS("Error while saving meta"),
- @"%@",_NS("VLC was unable to save the meta data."),
- _NS("OK"), nil, nil);
+ NSRunAlertPanel(_NS("Error while saving meta"), @"%@",
+ _NS("OK"), nil, nil,
+ _NS("VLC was unable to save the meta data."));
}
- (IBAction)downloadCoverArt:(id)sender
More information about the vlc-commits
mailing list