Changeset 03c546c175cbe5b1636ac581478b4a5fd969fc93
- Timestamp:
- 03/04/06 12:53:03
(3 years ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1141473183 +0000
- git-parent:
[22073fe6c9d9e1d2c037bcb175d8f73c5a0f7b0f]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1141473183 +0000
- Message:
* fix the table on the second tab and added an extra check to prevent a crash in rare situations
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc7b3731 |
r03c546c |
|
| 142 | 142 | - (void)initPanel:(id)sender |
|---|
| 143 | 143 | { |
|---|
| | 144 | /* check whether our item is valid, because we would crash if not */ |
|---|
| | 145 | if(! [self isItemInPlaylist: p_item] ) |
|---|
| | 146 | return; |
|---|
| | 147 | |
|---|
| 144 | 148 | char *psz_temp; |
|---|
| 145 | 149 | vlc_mutex_lock( &p_item->input.lock ); |
|---|
| … | … | |
| 186 | 190 | [[VLCInfoTreeItem rootItem] refresh]; |
|---|
| 187 | 191 | [o_outline_view reloadData]; |
|---|
| 188 | | |
|---|
| | 192 | |
|---|
| 189 | 193 | [self updateStatistics: nil]; |
|---|
| 190 | 194 | |
|---|