diff options
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/macosx/appmenu_osx.mm | 6 | ||||
-rw-r--r-- | backends/platform/sdl/win32/win32.mk | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/backends/platform/sdl/macosx/appmenu_osx.mm b/backends/platform/sdl/macosx/appmenu_osx.mm index 1d5ab12792..38ce8c49a2 100644 --- a/backends/platform/sdl/macosx/appmenu_osx.mm +++ b/backends/platform/sdl/macosx/appmenu_osx.mm @@ -87,6 +87,7 @@ static void openFromBundle(NSString *file) { - (void) openLicenseGPL; - (void) openLicenseLGPL; - (void) openLicenseFreefont; +- (void) openLicenseOFL; - (void) openLicenseBSD; - (void) openNews; - (void) openUserManual; @@ -110,6 +111,10 @@ static void openFromBundle(NSString *file) { openFromBundle(@"COPYING-FREEFONT"); } +- (void)openLicenseOFL { + openFromBundle(@"COPYING-OFL"); +} + - (void)openLicenseBSD { openFromBundle(@"COPYING-BSD"); } @@ -216,6 +221,7 @@ void replaceApplicationMenuItems() { addMenuItem(_("GPL License"), stringEncoding, delegate, @selector(openLicenseGPL), @"", helpMenu); addMenuItem(_("LGPL License"), stringEncoding, delegate, @selector(openLicenseLGPL), @"", helpMenu); addMenuItem(_("Freefont License"), stringEncoding, delegate, @selector(openLicenseFreefont), @"", helpMenu); + addMenuItem(_("OFL License"), stringEncoding, delegate, @selector(openLicenseOFL), @"", helpMenu); addMenuItem(_("BSD License"), stringEncoding, delegate, @selector(openLicenseBSD), @"", helpMenu); diff --git a/backends/platform/sdl/win32/win32.mk b/backends/platform/sdl/win32/win32.mk index 227878eaf0..32f60e10f9 100644 --- a/backends/platform/sdl/win32/win32.mk +++ b/backends/platform/sdl/win32/win32.mk @@ -23,6 +23,7 @@ win32dist: all cp $(srcdir)/COPYING.BSD $(WIN32PATH)/COPYING.BSD.txt cp $(srcdir)/COPYING.LGPL $(WIN32PATH)/COPYING.LGPL.txt cp $(srcdir)/COPYING.FREEFONT $(WIN32PATH)/COPYING.FREEFONT.txt + cp $(srcdir)/COPYING.OFL $(WIN32PATH)/COPYING.OFL.txt cp $(srcdir)/COPYRIGHT $(WIN32PATH)/COPYRIGHT.txt cp $(srcdir)/doc/cz/PrectiMe $(WIN32PATH)/doc/cz/PrectiMe.txt cp $(srcdir)/doc/de/NEUES $(WIN32PATH)/doc/de/NEUES.txt |