Commit c0d091ce authored by Felix Paul Kühne's avatar Felix Paul Kühne

* put a warning to prevent users from reporting known bugs for panel is which...

* put a warning to prevent users from reporting known bugs for panel is which won't be included within 0.8.5
* fixed svn propset
parent 38540559
/***************************************************************************** /*****************************************************************************
* sfilter.h: MacOS X Subpicture filters dialogue * sfilter.h: MacOS X Subpicture filters dialogue
***************************************************************************** *****************************************************************************
* Copyright (C) 2005 the VideoLAN team * Copyright (C) 2005-2006 the VideoLAN team
* $Id:$ * $Id:$
* *
* Authors: Felix Kühne <fkuehne@users.sf.net> * Authors: Felix Kühne <fkuehne@users.sf.net>
......
/***************************************************************************** /*****************************************************************************
* sfilter.m: MacOS X Subpicture filters dialogue * sfilter.m: MacOS X Subpicture filters dialogue
***************************************************************************** *****************************************************************************
* Copyright (C) 2005 the VideoLAN team * Copyright (C) 2005-2006 the VideoLAN team
* $Id:$ * $Id:$
* *
* Authors: Felix Kühne <fkuehne@users.sf.net> * Authors: Felix Kühne <fkuehne@users.sf.net>
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
/* TODO: /* TODO:
- check for memory leaks - check for memory leaks
- save the preferences, if requested - save the preferences, if requested
- fix stupid compilation warnings
*/ */
@implementation VLCsFilters @implementation VLCsFilters
...@@ -243,6 +242,14 @@ static VLCsFilters *_o_sharedInstance = nil; ...@@ -243,6 +242,14 @@ static VLCsFilters *_o_sharedInstance = nil;
[o_sfilter_win displayIfNeeded]; [o_sfilter_win displayIfNeeded];
[o_sfilter_win makeKeyAndOrderFront:nil]; [o_sfilter_win makeKeyAndOrderFront:nil];
/* show a warning until the panel is removed for 0.8.5
* This isn't to be localised */
NSBeginCriticalAlertSheet( @"Implementation incomplete", @"OK", \
@"", @"", o_sfilter_win, nil, nil, nil, nil, @"The panel " \
"you just opened is not implemented completely and contains " \
"various limitations and certain bugs. Be warned.\n\nIt isn't going " \
"to be included within the final build of VLC 0.8.5." );
intf_thread_t * p_intf = VLCIntf; intf_thread_t * p_intf = VLCIntf;
/* retrieve the marquee settings */ /* retrieve the marquee settings */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment