Commit 189d534f authored by Felix Paul Kühne's avatar Felix Paul Kühne

minor ui changes

Removed a useless dbg msg
parent 06ab53f3
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>IBDocumentLocation</key> <key>IBDocumentLocation</key>
<string>31 299 356 240 0 0 1280 778 </string> <string>69 71 356 240 0 0 1280 778 </string>
<key>IBEditorPositions</key> <key>IBEditorPositions</key>
<dict> <dict>
<key>2197</key> <key>2197</key>
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
<integer>5</integer> <integer>5</integer>
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>2416</integer>
<integer>2197</integer> <integer>2197</integer>
<integer>29</integer>
<integer>282</integer> <integer>282</integer>
<integer>21</integer> <integer>21</integer>
<integer>29</integer>
<integer>915</integer> <integer>915</integer>
<integer>2416</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>9E17</string> <string>9E17</string>
......
...@@ -292,7 +292,7 @@ ...@@ -292,7 +292,7 @@
} }
else else
{ {
o_value = @"-:--:--"; o_value = @"--:--";
} }
} }
free( psz_artist ); free( psz_artist );
...@@ -467,7 +467,7 @@ ...@@ -467,7 +467,7 @@
if( playlist_CurrentSize( p_playlist ) >= 2 ) if( playlist_CurrentSize( p_playlist ) >= 2 )
{ {
[o_status_field setStringValue: [NSString stringWithFormat: [o_status_field setStringValue: [NSString stringWithFormat:
_NS("%i items in the playlist"), _NS("%i items"),
playlist_CurrentSize( p_playlist )]]; playlist_CurrentSize( p_playlist )]];
} }
else else
...@@ -475,7 +475,7 @@ ...@@ -475,7 +475,7 @@
if( playlist_IsEmpty( p_playlist ) ) if( playlist_IsEmpty( p_playlist ) )
[o_status_field setStringValue: _NS("No items in the playlist")]; [o_status_field setStringValue: _NS("No items in the playlist")];
else else
[o_status_field setStringValue: _NS("1 item in the playlist")]; [o_status_field setStringValue: _NS("1 item")];
} }
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
} }
...@@ -1351,7 +1351,7 @@ ...@@ -1351,7 +1351,7 @@
if( playlist_CurrentSize( p_playlist ) >= 2 ) if( playlist_CurrentSize( p_playlist ) >= 2 )
{ {
[o_status_field setStringValue: [NSString stringWithFormat: [o_status_field setStringValue: [NSString stringWithFormat:
_NS("%i items in the playlist"), _NS("%i items"),
playlist_CurrentSize( p_playlist )]]; playlist_CurrentSize( p_playlist )]];
} }
else else
...@@ -1362,16 +1362,13 @@ ...@@ -1362,16 +1362,13 @@
} }
else else
{ {
[o_status_field setStringValue: _NS("1 item in the playlist")]; [o_status_field setStringValue: _NS("1 item")];
} }
} }
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
[o_outline_dict setObject:o_value forKey:[NSString stringWithFormat:@"%p", [o_outline_dict setObject:o_value forKey:[NSString stringWithFormat:@"%p",
[o_value pointerValue]]]; [o_value pointerValue]]];
#ifndef NDEBUG
msg_Dbg( VLCIntf, "adding item %p", [o_value pointerValue] );
#endif
return o_value; return o_value;
} }
......
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