[vlc-commits] macosx: Fix missing colon when copying log message

Marvin Scholz git at videolan.org
Wed Aug 9 14:39:56 CEST 2017


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Wed Aug  9 14:38:44 2017 +0200| [5eb7c61f4649905701f088be9ccac79966fb98cd] | committer: Marvin Scholz

macosx: Fix missing colon when copying log message

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5eb7c61f4649905701f088be9ccac79966fb98cd
---

 modules/gui/macosx/VLCLogWindowController.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/macosx/VLCLogWindowController.m b/modules/gui/macosx/VLCLogWindowController.m
index fcd7e6bae9..22d5c54162 100644
--- a/modules/gui/macosx/VLCLogWindowController.m
+++ b/modules/gui/macosx/VLCLogWindowController.m
@@ -268,7 +268,7 @@ static void MsgCallback(void *data, int type, const vlc_log_t *item, const char
     NSPasteboard *pasteBoard = [NSPasteboard generalPasteboard];
     [pasteBoard clearContents];
     for (NSDictionary *line in [_arrayController selectedObjects]) {
-        NSString *message = [NSString stringWithFormat:@"%@ %@ %@",
+        NSString *message = [NSString stringWithFormat:@"%@ %@: %@",
                              [line objectForKey:@"component"],
                              [line objectForKey:@"type"],
                              [line objectForKey:@"message"]];



More information about the vlc-commits mailing list