Changeset 2e0102d92da57379e9b65457b36c8e96f93f35b0

Show
Ignore:
Timestamp:
10/05/06 18:35:01 (2 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 1160066101 +0000
git-parent:

[81ac662973eda626235f40407d5cda038666e519]

git-author:
Sam Hocevar <sam@videolan.org> 1160066101 +0000
Message:
  • Spelling fixes here and there.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • loader/registry.c

    r87e02f7 r2e0102d  
    333333    // regpathname is an external pointer 
    334334        // 
    335     // registry.c is holding it's own internal pointer 
     335    // registry.c is holding its own internal pointer 
    336336    // localregpathname  - which is being allocate/deallocated 
    337337 
  • loader/win32.c

    r87e02f7 r2e0102d  
    42724272#if 1 
    42734273 
    4274 // prefered compilation with  -O2 -ffast-math ! 
     4274// preferred compilation with  -O2 -ffast-math ! 
    42754275 
    42764276static double explog10(double x) 
  • modules/audio_output/auhal.c

    rf485214 r2e0102d  
    12181218 
    12191219    /* The AudioStreamSetProperty is not only asynchronious (requiring the locks) 
    1220      * it is also not Atomic, in it's behaviour. 
     1220     * it is also not atomic in its behaviour. 
    12211221     * Therefore we check 5 times before we really give up. 
    12221222     * FIXME: failing isn't actually implemented yet. */ 
  • modules/codec/cinepak.c

    r2d824ac r2e0102d  
    456456        i_strip_size = GET2BYTES( p_data ); 
    457457        i_strip_size = __MIN( i_strip_size, i_length ); 
    458         /* FIXME I don't really understand how it's work; */ 
     458        /* FIXME I don't really understand how it works; */ 
    459459        i_strip_y1  = i_strip_y2 + GET2BYTES( p_data ); 
    460460        i_strip_x1  = GET2BYTES( p_data ); 
  • modules/codec/dvbsub.c

    r62fffad r2e0102d  
    3131 * FIXME: 
    3232 * DVB subtitles coded as strings of characters are not handled correctly. 
    33  * The character codes in the string should actually be indexes refering to a 
     33 * The character codes in the string should actually be indexes referring to a 
    3434 * character table identified in the subtitle descriptor. 
    3535 *****************************************************************************/ 
  • modules/demux/asf/libasf.h

    r7f779f6 r2e0102d  
    146146 * High level asf object 
    147147 ****************************************************************************/ 
    148 /* This is the first header find in a asf file 
    149  * It's the only object that have subobject */ 
     148/* This is the first header found in an asf file 
     149 * It's the only object that has subobjects */ 
    150150typedef struct 
    151151{ 
  • modules/demux/live555.cpp

    rba747c3 r2e0102d  
    738738    if( p_sdp == NULL ) 
    739739    { 
    740         /* failure occured */ 
     740        /* failure occurred */ 
    741741        int i_code = 0; 
    742742        const char *psz_error = p_sys->env->getResultMsg(); 
  • modules/gui/qt4/components/simple_preferences.cpp

    r897144d r2e0102d  
    150150 
    151151            CONFIG_GENERIC( "subsdec-encoding", StringList, NULL, encoding ); 
    152             CONFIG_GENERIC( "sub-language", String, NULL, preferedLanguage ); 
     152            CONFIG_GENERIC( "sub-language", String, NULL, preferredLanguage ); 
    153153            CONFIG_GENERIC( "freetype-font", String, NULL, font ); /* FIXME -> use file instead of string */ 
    154154            CONFIG_GENERIC( "freetype-color", IntegerList, NULL, fontColor ); 
  • modules/gui/qt4/ui/sprefs_audio.ui

    rea92ef2 r2e0102d  
    9999    <widget class="QLabel" name="label" > 
    100100     <property name="text" > 
    101       <string>Prefered audio language</string> 
     101      <string>Preferred audio language</string> 
    102102     </property> 
    103103    </widget> 
    104104   </item> 
    105105   <item row="2" column="1" > 
    106     <widget class="QComboBox" name="preferedAudioLanguage" /> 
     106    <widget class="QComboBox" name="preferredAudioLanguage" /> 
    107107   </item> 
    108108   <item row="3" column="0" > 
  • modules/gui/qt4/ui/sprefs_interface.ui

    rd9aeb97 r2e0102d  
    4848       <widget class="QLabel" name="label_2" > 
    4949        <property name="text" > 
    50          <string>This is the new VLC default interface. It's dialogs give access to most VLC features.</string> 
     50         <string>This is the new VLC default interface. Its dialogs give access to most VLC features.</string> 
    5151        </property> 
    5252        <property name="wordWrap" > 
  • modules/gui/qt4/ui/sprefs_subtitles.ui

    r4587e35 r2e0102d  
    9898    <widget class="QLabel" name="label" > 
    9999     <property name="text" > 
    100       <string>Subtitles prefered language</string> 
     100      <string>Subtitles preferred language</string> 
    101101     </property> 
    102102    </widget> 
    103103   </item> 
    104104   <item row="0" column="1" > 
    105     <widget class="QLineEdit" name="preferedLanguage" /> 
     105    <widget class="QLineEdit" name="preferredLanguage" /> 
    106106   </item> 
    107107  </layout> 
  • modules/gui/wxwidgets/dialogs/playlist.cpp

    r7f779f6 r2e0102d  
    11731173    if( !dest_tree_item.IsOk() ) return; 
    11741174 
    1175     /* check that we're not trying to move a node into one of it's children */ 
     1175    /* check that we're not trying to move a node into one of its children */ 
    11761176    wxTreeItemId parent = dest_tree_item; 
    11771177    while( parent != treectrl->GetRootItem() ) 
     
    12761276            /* This is a leaf. Append right after it 
    12771277             * We thus need to find the parrent node and the position of the 
    1278              * leaf in it's children list */ 
     1278             * leaf in its children list */ 
    12791279            wxTreeItemId parent = p->treectrl->GetItemParent( item ); 
    12801280            PlaylistItem *p_parent = 
  • modules/mux/mpeg/ts.c

    r62fffad r2e0102d  
    15011501                            p_data->i_pts <= 0 ) 
    15021502                        { 
    1503                             /* XXX yes I know, it's awfull, but it's needed, 
     1503                            /* XXX yes I know, it's awful, but it's needed, 
    15041504                             * so don't remove it ... */ 
    15051505                            p_data->i_pts = p_data->i_dts; 
  • src/audio_output/output.c

    rf485214 r2e0102d  
    297297 
    298298#if 0 /* This is bad because the audio output might just be trying to fill 
    299        * in it's internal buffers. And anyway, it's up to the audio output 
     299       * in its internal buffers. And anyway, it's up to the audio output 
    300300       * to deal with this kind of starvation. */ 
    301301 
  • src/interface/interface.c

    r353ece4 r2e0102d  
    8686 * 
    8787 * \param p_this the calling vlc_object_t 
    88  * \param psz_module a prefered interface module 
     88 * \param psz_module a preferred interface module 
    8989 * \param i_options number additional options 
    9090 * \param ppsz_options additional option strings 
  • src/libvlc-common.c

    r2ffa2bd r2e0102d  
    11111111{ 
    11121112#define FORMAT_STRING "  %s --%s%s%s%s%s%s%s " 
    1113     /* short option ------'    |     | | | | | | 
    1114      * option name ------------'     | | | | | | 
    1115      * <bra -------------------------' | | | | | 
    1116      * option type or "" --------------' | | | | 
    1117      * ket> -----------------------------' | | | 
    1118      * padding spaces ---------------------' | | 
    1119      * comment -------------------------------' | 
    1120      * comment suffix --------------------------
     1113    /* short option ------'    | | | | | | | 
     1114     * option name ------------' | | | | | | 
     1115     * <bra ---------------------' | | | | | 
     1116     * option type or "" ----------' | | | | 
     1117     * ket> -------------------------' | | | 
     1118     * padding spaces -----------------' | | 
     1119     * comment --------------------------' | 
     1120     * comment suffix ---------------------
    11211121     * 
    11221122     * The purpose of having bra and ket is that we might i18n them as well. 
  • src/misc/update.c

    rf485214 r2e0102d  
    547547                    { 
    548548                        int i; 
    549                         /* look for a previous occurence of this release */ 
     549                        /* look for a previous occurrence of this release */ 
    550550                        for( i = 0; i < p_update->i_releases; i++ ) 
    551551                        { 
  • src/misc/variables.c

    reb463ca r2e0102d  
    937937    else i_name_len = strlen( psz_option ); 
    938938 
    939     /* It's too much of an hassle to remove the ':' when we parse 
     939    /* It's too much of a hassle to remove the ':' when we parse 
    940940     * the cmd line :) */ 
    941941    if( i_name_len && *psz_option == ':' ) 
  • src/playlist/item.c

    r3a2e81d r2e0102d  
    175175 * \param i_pos the position in the playlist where to add. If this is 
    176176 *        PLAYLIST_END the item will be added at the end of the playlist 
    177  *        regardless of it's size 
     177 *        regardless of its size 
    178178 * \param b_playlist TRUE for playlist, FALSE for media library 
    179179 * \return The id of the playlist item 
     
    196196 * \param i_pos the position in the playlist where to add. If this is 
    197197 *        PLAYLIST_END the item will be added at the end of the playlist 
    198  *        regardless of it's size 
     198 *        regardless of its size 
    199199 * \param i_duration length of the item in milliseconds. 
    200200 * \param ppsz_options an array of options