summaryrefslogtreecommitdiffstats
path: root/osdep/macosx_menubar.m
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-01-01 12:16:42 +0100
committerRicardo Constantino <wiiaboo@gmail.com>2018-01-01 21:05:09 +0000
commit49e704cb19dfe72b293fd286395e37ed1d3c3d99 (patch)
treed0e1ffeca2f87986d1378f4a31cca39f844f6a22 /osdep/macosx_menubar.m
parenta90abe05462a689e55280bc78af2999aa1f3823e (diff)
downloadmpv-49e704cb19dfe72b293fd286395e37ed1d3c3d99.tar.bz2
mpv-49e704cb19dfe72b293fd286395e37ed1d3c3d99.tar.xz
build: move copyright statement to a shared location
Now macosx_menubar.m and mpv.rc (win32) use the same copyright string. (This is a bit roundabout, because mpv.rc can't use C constants. Also the C code wants to avoid rebuilding real source files if only version.h changed, so only version.c includes version.h.)
Diffstat (limited to 'osdep/macosx_menubar.m')
-rw-r--r--osdep/macosx_menubar.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/macosx_menubar.m b/osdep/macosx_menubar.m
index 4e9b1733d6..3a5c5a76c2 100644
--- a/osdep/macosx_menubar.m
+++ b/osdep/macosx_menubar.m
@@ -612,7 +612,7 @@
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
@"mpv", @"ApplicationName",
[self getMPVIcon], @"ApplicationIcon",
- @"Copyright © 2000-2017 mpv/MPlayer/mplayer2 projects", @"Copyright",
+ [NSString stringWithUTF8String:mpv_copyright], @"Copyright",
[NSString stringWithUTF8String:mpv_version], @"ApplicationVersion",
nil];
[NSApp orderFrontStandardAboutPanelWithOptions:options];