[vlc-devel] commit: macosx: remove some dead code ( Felix Paul Kühne )
git version control
git at videolan.org
Wed Sep 30 19:25:09 CEST 2009
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Wed Sep 30 19:24:26 2009 +0200| [76103bc42a148280b48917aeaa03af08cb33f8c6] | committer: Felix Paul Kühne
macosx: remove some dead code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=76103bc42a148280b48917aeaa03af08cb33f8c6
---
modules/gui/macosx/intf.m | 24 ------------------------
1 files changed, 0 insertions(+), 24 deletions(-)
diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index ff82693..be38032 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -396,30 +396,6 @@ static VLCMain *_o_sharedMainInstance = nil;
because VLCMain is the owner */
if( nib_main_loaded ) return;
- /* check whether the user runs a valid version of OS X */
- if( MACOS_VERSION < 10.5f )
- {
- NSAlert *ourAlert;
- int i_returnValue;
- NSString *o_blabla;
- if( MACOS_VERSION == 10.4f )
- o_blabla = _NS("VLC's last release for your OS is the 0.9 series." );
- else if( MACOS_VERSION == 10.3f )
- o_blabla = _NS("VLC's last release for your OS is VLC 0.8.6i, which is prone to known security issues." );
- else // 10.2 and 10.1, still 3% of the OS X market share
- o_blabla = _NS("VLC's last release for your OS is VLC 0.7.2, which is highly out of date and prone to " \
- "known security issues. We recommend you to update your Mac to a modern version of Mac OS X.");
- ourAlert = [NSAlert alertWithMessageText: _NS("Your version of Mac OS X is no longer supported")
- defaultButton: _NS("Quit")
- alternateButton: NULL
- otherButton: NULL
- informativeTextWithFormat: _NS("VLC media player %s requires Mac OS X 10.5 or higher.\n\n%@"), VLC_Version(), o_blabla];
- [ourAlert setAlertStyle: NSCriticalAlertStyle];
- i_returnValue = [ourAlert runModal];
- [NSApp performSelectorOnMainThread: @selector(terminate:) withObject:nil waitUntilDone:NO];
- return;
- }
-
[self initStrings];
[o_window setExcludedFromWindowsMenu: YES];
More information about the vlc-devel
mailing list