Changeset 37381b61344084f8c3be03104ad312f8b72b9fd8
- Timestamp:
- 23/12/07 19:20:06
(1 year ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1198434006 +0000
- git-parent:
[7dfd1a1d1e0b512ec83466c1e85e36cba308037b]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1198434006 +0000
- Message:
macosx:playlist.m turn an error msg into a warning as the event isn't as bad as it seems to be
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd0d0541 |
r37381b6 |
|
| 83 | 83 | case NSEnterCharacter: |
|---|
| 84 | 84 | case NSCarriageReturnCharacter: |
|---|
| 85 | | [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] |
|---|
| 86 | | playItem:self]; |
|---|
| | 85 | [(VLCPlaylist *)[[VLCMain sharedInstance] getPlaylist] playItem:self]; |
|---|
| 87 | 86 | break; |
|---|
| 88 | 87 | |
|---|
| … | … | |
| 202 | 201 | if( o_value == nil ) |
|---|
| 203 | 202 | { |
|---|
| | 203 | msg_Warn( VLCIntf, "playlist item misses pointer value, adding one" ); |
|---|
| 204 | 204 | o_value = [[NSValue valueWithPointer: p_return] retain]; |
|---|
| 205 | | msg_Err( VLCIntf, "missing playlist item's pointer value" ); |
|---|
| 206 | 205 | } |
|---|
| 207 | 206 | return o_value; |
|---|