Changeset d090e475ad6e0a5f40b3befe1853dac1ed77d617
- Timestamp:
- 11/06/04 12:23:38
(4 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1099740218 +0000
- git-parent:
[d875188873bae166d948edf976d5b960a1dd2c3f]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1099740218 +0000
- Message:
compilation fix for xOSD
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r214024c |
rd090e47 |
|
| 226 | 226 | psz_display = NULL; |
|---|
| 227 | 227 | } |
|---|
| 228 | | if( p_playlist->i_status == PLAYLIST_STOPPED ) |
|---|
| | 228 | if( p_playlist->status.i_status == PLAYLIST_STOPPED ) |
|---|
| 229 | 229 | { |
|---|
| 230 | 230 | psz_display = (char *)malloc( sizeof(char )*strlen(_("Stop"))); |
|---|
| … | … | |
| 232 | 232 | vlc_object_release( p_playlist ); |
|---|
| 233 | 233 | } |
|---|
| 234 | | else if( p_playlist->i_status == PLAYLIST_PAUSED ) |
|---|
| | 234 | else if( p_playlist->status.i_status == PLAYLIST_PAUSED ) |
|---|
| 235 | 235 | { |
|---|
| 236 | 236 | psz_display = (char *)malloc( sizeof(char )*strlen(_("Pause"))); |
|---|