[vlc-commits] macosx: fix utf8 issue
Felix Paul Kühne
git at videolan.org
Sun Apr 27 13:11:12 CEST 2014
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Apr 27 13:10:35 2014 +0200| [4c1392b3597320b3411ac829907f939331034f3d] | committer: Felix Paul Kühne
macosx: fix utf8 issue
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4c1392b3597320b3411ac829907f939331034f3d
---
modules/gui/macosx/playlist.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m
index 0b84608..961997a 100644
--- a/modules/gui/macosx/playlist.m
+++ b/modules/gui/macosx/playlist.m
@@ -1460,7 +1460,7 @@
NSInteger returnValue = 0;
if (settingValue == 0) {
- NSAlert *theAlert = [NSAlert alertWithMessageText:_NS("Continue playback?") defaultButton:_NS("Continue") alternateButton:_NS("Restart playback") otherButton:_NS("Always continue") informativeTextWithFormat:_NS("Playback of \"%s\" will continue at %@"), input_item_GetTitleFbName(p_input), [[VLCStringUtility sharedInstance] stringForTime:lastPosition.intValue]];
+ NSAlert *theAlert = [NSAlert alertWithMessageText:_NS("Continue playback?") defaultButton:_NS("Continue") alternateButton:_NS("Restart playback") otherButton:_NS("Always continue") informativeTextWithFormat:_NS("Playback of \"%@\" will continue at %@"), [NSString stringWithUTF8String:input_item_GetTitleFbName(p_input)], [[VLCStringUtility sharedInstance] stringForTime:lastPosition.intValue]];
playlist_t *p_playlist = pl_Get(VLCIntf);
PL_UNLOCK;
More information about the vlc-commits
mailing list