Changeset 189d534ff508044cf0d22886f4160cfb50b7e29f
- Timestamp:
- 06/07/08 02:07:35
(3 months ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1215302855 +0200
- git-parent:
[06ab53f37e431c399901b49a449c9ba834930d64]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1215302855 +0200
- Message:
minor ui changes
Removed a useless dbg msg
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r06ab53f |
r189d534 |
|
| 4 | 4 | <dict> |
|---|
| 5 | 5 | <key>IBDocumentLocation</key> |
|---|
| 6 | | <string>31 299 356 240 0 0 1280 778 </string> |
|---|
| | 6 | <string>69 71 356 240 0 0 1280 778 </string> |
|---|
| 7 | 7 | <key>IBEditorPositions</key> |
|---|
| 8 | 8 | <dict> |
|---|
| … | … | |
| 22 | 22 | <key>IBOpenObjects</key> |
|---|
| 23 | 23 | <array> |
|---|
| 24 | | <integer>2416</integer> |
|---|
| 25 | 24 | <integer>2197</integer> |
|---|
| | 25 | <integer>29</integer> |
|---|
| 26 | 26 | <integer>282</integer> |
|---|
| 27 | 27 | <integer>21</integer> |
|---|
| 28 | | <integer>29</integer> |
|---|
| 29 | 28 | <integer>915</integer> |
|---|
| | 29 | <integer>2416</integer> |
|---|
| 30 | 30 | </array> |
|---|
| 31 | 31 | <key>IBSystem Version</key> |
|---|
| r898c67b |
r189d534 |
|
| 293 | 293 | else |
|---|
| 294 | 294 | { |
|---|
| 295 | | o_value = @"-:--:--"; |
|---|
| | 295 | o_value = @"--:--"; |
|---|
| 296 | 296 | } |
|---|
| 297 | 297 | } |
|---|
| … | … | |
| 468 | 468 | { |
|---|
| 469 | 469 | [o_status_field setStringValue: [NSString stringWithFormat: |
|---|
| 470 | | _NS("%i items in the playlist"), |
|---|
| | 470 | _NS("%i items"), |
|---|
| 471 | 471 | playlist_CurrentSize( p_playlist )]]; |
|---|
| 472 | 472 | } |
|---|
| … | … | |
| 476 | 476 | [o_status_field setStringValue: _NS("No items in the playlist")]; |
|---|
| 477 | 477 | else |
|---|
| 478 | | [o_status_field setStringValue: _NS("1 item in the playlist")]; |
|---|
| | 478 | [o_status_field setStringValue: _NS("1 item")]; |
|---|
| 479 | 479 | } |
|---|
| 480 | 480 | vlc_object_release( p_playlist ); |
|---|
| … | … | |
| 1352 | 1352 | { |
|---|
| 1353 | 1353 | [o_status_field setStringValue: [NSString stringWithFormat: |
|---|
| 1354 | | _NS("%i items in the playlist"), |
|---|
| | 1354 | _NS("%i items"), |
|---|
| 1355 | 1355 | playlist_CurrentSize( p_playlist )]]; |
|---|
| 1356 | 1356 | } |
|---|
| … | … | |
| 1363 | 1363 | else |
|---|
| 1364 | 1364 | { |
|---|
| 1365 | | [o_status_field setStringValue: _NS("1 item in the playlist")]; |
|---|
| | 1365 | [o_status_field setStringValue: _NS("1 item")]; |
|---|
| 1366 | 1366 | } |
|---|
| 1367 | 1367 | } |
|---|
| … | … | |
| 1370 | 1370 | [o_outline_dict setObject:o_value forKey:[NSString stringWithFormat:@"%p", |
|---|
| 1371 | 1371 | [o_value pointerValue]]]; |
|---|
| 1372 | | #ifndef NDEBUG |
|---|
| 1373 | | msg_Dbg( VLCIntf, "adding item %p", [o_value pointerValue] ); |
|---|
| 1374 | | #endif |
|---|
| 1375 | 1372 | return o_value; |
|---|
| 1376 | 1373 | |
|---|