Commit b42f3a07 authored by David Fuhrmann's avatar David Fuhrmann

macosx: remove show details button from error panel

It does not make sense to open the messages window here anymore, as
it will not show any additional details if not already open.
parent 7afef270
...@@ -35,7 +35,6 @@ ...@@ -35,7 +35,6 @@
IBOutlet id o_window; IBOutlet id o_window;
IBOutlet id o_cleanup_button; IBOutlet id o_cleanup_button;
IBOutlet id o_error_table; IBOutlet id o_error_table;
IBOutlet id o_messages_btn;
NSMutableArray * o_errors; NSMutableArray * o_errors;
NSMutableArray * o_icons; NSMutableArray * o_icons;
...@@ -43,7 +42,6 @@ ...@@ -43,7 +42,6 @@
BOOL b_nib_loaded; BOOL b_nib_loaded;
} }
- (IBAction)cleanupTable:(id)sender; - (IBAction)cleanupTable:(id)sender;
- (IBAction)showMessages:(id)sender;
-(void)showPanel; -(void)showPanel;
-(void)addError: (NSString *)o_error withMsg:(NSString *)o_msg; -(void)addError: (NSString *)o_error withMsg:(NSString *)o_msg;
......
...@@ -242,7 +242,6 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil; ...@@ -242,7 +242,6 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
/* init strings */ /* init strings */
[o_window setTitle: _NS("Errors and Warnings")]; [o_window setTitle: _NS("Errors and Warnings")];
[o_cleanup_button setTitle: _NS("Clean up")]; [o_cleanup_button setTitle: _NS("Clean up")];
[o_messages_btn setTitle: _NS("Show Details")];
} }
-(void)dealloc -(void)dealloc
...@@ -284,11 +283,6 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil; ...@@ -284,11 +283,6 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
[o_error_table reloadData]; [o_error_table reloadData];
} }
-(IBAction)showMessages:(id)sender
{
[[VLCMain sharedInstance] showMessagesPanel: sender];
}
/*---------------------------------------------------------------------------- /*----------------------------------------------------------------------------
* data source methods * data source methods
*---------------------------------------------------------------------------*/ *---------------------------------------------------------------------------*/
......
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