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