Changeset 189d534ff508044cf0d22886f4160cfb50b7e29f

Show
Ignore:
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
  • extras/package/macosx/Resources/English.lproj/MainMenu.nib/info.nib

    r06ab53f r189d534  
    44<dict> 
    55    <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> 
    77    <key>IBEditorPositions</key> 
    88    <dict> 
     
    2222    <key>IBOpenObjects</key> 
    2323    <array> 
    24         <integer>2416</integer> 
    2524        <integer>2197</integer> 
     25        <integer>29</integer> 
    2626        <integer>282</integer> 
    2727        <integer>21</integer> 
    28         <integer>29</integer> 
    2928        <integer>915</integer> 
     29        <integer>2416</integer> 
    3030    </array> 
    3131    <key>IBSystem Version</key> 
  • modules/gui/macosx/playlist.m

    r898c67b r189d534  
    293293            else 
    294294            { 
    295                 o_value = @"-:--:--"; 
     295                o_value = @"--:--"; 
    296296            } 
    297297        } 
     
    468468    { 
    469469        [o_status_field setStringValue: [NSString stringWithFormat: 
    470                     _NS("%i items in the playlist"), 
     470                    _NS("%i items"), 
    471471                playlist_CurrentSize( p_playlist )]]; 
    472472    } 
     
    476476            [o_status_field setStringValue: _NS("No items in the playlist")]; 
    477477        else 
    478             [o_status_field setStringValue: _NS("1 item in the playlist")]; 
     478            [o_status_field setStringValue: _NS("1 item")]; 
    479479    } 
    480480    vlc_object_release( p_playlist ); 
     
    13521352    { 
    13531353        [o_status_field setStringValue: [NSString stringWithFormat: 
    1354                     _NS("%i items in the playlist"), 
     1354                    _NS("%i items"), 
    13551355             playlist_CurrentSize( p_playlist )]]; 
    13561356    } 
     
    13631363        else 
    13641364        { 
    1365             [o_status_field setStringValue: _NS("1 item in the playlist")]; 
     1365            [o_status_field setStringValue: _NS("1 item")]; 
    13661366        } 
    13671367    } 
     
    13701370    [o_outline_dict setObject:o_value forKey:[NSString stringWithFormat:@"%p", 
    13711371                                                    [o_value pointerValue]]]; 
    1372 #ifndef NDEBUG 
    1373     msg_Dbg( VLCIntf, "adding item %p", [o_value pointerValue] ); 
    1374 #endif 
    13751372    return o_value; 
    13761373