[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    KDE/kdemultimedia
From:       Enrique Matías Sánchez <cronopios () gmail ! com>
Date:       2008-10-22 12:52:31
Message-ID: 1224679951.866517.19728.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 874772 by quique:

Fix typos in kdemultimedia

 M  +1 -1      dragonplayer/src/app/mainWindow.cpp  
 M  +1 -1      dragonplayer/src/app/stateChange.cpp  
 M  +4 -4      dragonplayer/src/app/videoWindow.cpp  
 M  +2 -2      kmix/kmix.cpp  
 M  +3 -3      kmix/mdwslider.cpp  
 M  +1 -1      kmix/mixdevice.h  
 M  +3 -3      kmix/mixertoolbox.cpp  
 M  +2 -2      kscd/gui/seekcursor.cpp  
 M  +2 -2      libkcddb/cdinfo.h  


--- trunk/KDE/kdemultimedia/dragonplayer/src/app/mainWindow.cpp #874771:874772
@@ -485,7 +485,7 @@
     }
 
     //let xine handle invalid, etc, KUrlS
-    //TODO it handles non-existant files with bad error message
+    //TODO it handles non-existing files with bad error message
     return engine()->load( url );
 }
 
--- trunk/KDE/kdemultimedia/dragonplayer/src/app/stateChange.cpp #874771:874772
@@ -193,7 +193,7 @@
     debug() << "set titles ";
 
 
-    //enable/disbale DVD specific buttons
+    // enable/disable DVD specific buttons
     QWidget *dvd_button = toolBar()->findChild< QWidget* >( \
"toolbutton_toggle_dvd_menu" );  if(videoWindow()->isDVD())
     {
--- trunk/KDE/kdemultimedia/dragonplayer/src/app/videoWindow.cpp #874771:874772
@@ -121,8 +121,8 @@
         turnOff->setProperty( TheStream::CHANNEL_PROPERTY, -1 );
         connect( turnOff, SIGNAL( triggered() ), this, SLOT( slotSetSubtitle() ) );
 
-        QAction* seperator = new QAction( m_subLanguages );
-        seperator->setSeparator( true );
+        QAction* separator = new QAction( m_subLanguages );
+        separator->setSeparator( true );
     }
     {
         m_audioLanguages->setExclusive( true );
@@ -131,8 +131,8 @@
         autoLang->setCheckable( true );
         connect( autoLang, SIGNAL( triggered() ), this, SLOT( slotSetAudio() ) );
 
-        QAction* seperator = new QAction( m_audioLanguages );
-        seperator->setSeparator( true );
+        QAction* separator = new QAction( m_audioLanguages );
+        separator->setSeparator( true );
     }
 
     connect( m_media, SIGNAL(stateChanged(Phonon::State,Phonon::State)), this, \
                SLOT(stateChanged(Phonon::State,Phonon::State)) );
--- trunk/KDE/kdemultimedia/kmix/kmix.cpp #874771:874772
@@ -251,7 +251,7 @@
         QWidget *w = m_wsMixers->widget(i);
         if ( w->inherits("KMixerWidget") ) {
             KMixerWidget* mw = (KMixerWidget*)w;
-            // Here also Views are saved. even for Mixers that are closed. This is \
neccesary when unplugging cards. +            // Here also Views are saved. even for \
                Mixers that are closed. This is necessary when unplugging cards.
             // Otherwise the user will be confused afer re-plugging the card (as the \
config was not saved).  mw->saveConfig( KGlobal::config().data() );
         }
@@ -442,7 +442,7 @@
                 }
             }
             MixerToolBox::instance()->removeMixer(mixer);
-            // Check whether the Global Master disappeared, and select a new one if \
neccesary +            // Check whether the Global Master disappeared, and select a \
new one if necessary  MixDevice* md = Mixer::getGlobalMasterMD();
             if ( globalMasterMixerDestroyed || md == 0 ) {
                 // We don't know what the global master should be now.
--- trunk/KDE/kdemultimedia/kmix/mdwslider.cpp #874771:874772
@@ -112,7 +112,7 @@
    increaseVolumeName += " - " + mixDevice()->readableName() + ", " + \
mixDevice()->mixer()->readableName();  b->setText( increaseVolumeName  );
 #ifdef __GNUC__
-#warning GLOBAL SHORTCUTS ARE NOW ASSIGNED TO ALL CONTROLS, as \
enableGlobalShortcut(), has not been commited +#warning GLOBAL SHORTCUTS ARE NOW \
ASSIGNED TO ALL CONTROLS, as enableGlobalShortcut(), has not been committed  #endif
    b->setGlobalShortcut(dummyShortcut);  // -<- enableGlobalShortcut() is not there \
=> use workaround  //   b->enableGlobalShortcut();
@@ -123,7 +123,7 @@
    decreaseVolumeName += " - " + mixDevice()->readableName() + ", " + \
mixDevice()->mixer()->readableName();  b->setText( decreaseVolumeName );
 #ifdef __GNUC__
-#warning GLOBAL SHORTCUTS ARE NOW ASSIGNED TO ALL CONTROLS, as \
enableGlobalShortcut(), has not been commited +#warning GLOBAL SHORTCUTS ARE NOW \
ASSIGNED TO ALL CONTROLS, as enableGlobalShortcut(), has not been committed  #endif
    b->setGlobalShortcut(dummyShortcut);  // -<- enableGlobalShortcut() is not there \
=> use workaround  //   b->enableGlobalShortcut();
@@ -134,7 +134,7 @@
    muteVolumeName += " - " + mixDevice()->readableName() + ", " + \
mixDevice()->mixer()->readableName();  b->setText( muteVolumeName );
 #ifdef __GNUC__
-#warning GLOBAL SHORTCUTS ARE NOW ASSIGNED TO ALL CONTROLS, as \
enableGlobalShortcut(), has not been commited +#warning GLOBAL SHORTCUTS ARE NOW \
ASSIGNED TO ALL CONTROLS, as enableGlobalShortcut(), has not been committed  #endif
    b->setGlobalShortcut(dummyShortcut);  // -<- enableGlobalShortcut() is not there \
=> use workaround  //   b->enableGlobalShortcut();
--- trunk/KDE/kdemultimedia/kmix/mixdevice.h #874771:874772
@@ -94,7 +94,7 @@
    /**
    * Returns an ID of this MixDevice, as passed in the constructor. The Creator \
                (normally the backend) 
     * MUST ensure that all MixDevices's of one card have unique ID's.
-   * The ID is used through the whole KMix appplication (including the config file) \
for identifying controls. +   * The ID is used through the whole KMix application \
                (including the config file) for identifying controls.
    */
    const QString& id() const;
 
--- trunk/KDE/kdemultimedia/kmix/mixertoolbox.cpp #874771:874772
@@ -62,7 +62,7 @@
  * Scan for Mixers in the System. This is the method that implicitely fills the
  * list of Mixer's, which is accessible via the static Mixer::mixer() method.
  *
- * This is run only once during the initilization phase of KMix. It has the \
following tasks: + * This is run only once during the initialization phase of KMix. \
                It has the following tasks:
  * 1) Coldplug scan, to fill the initial mixer list
 * 2) Rember UDI's, to match them when unplugging a device
 * 3) Find out, which Backend to use (plugin events of other Backends are ignored).
@@ -127,7 +127,7 @@
          Mixer *mixer = new Mixer( driverName, dev );
          possiblyAddMixer(mixer);
    
-         /* Lets decide if the autoprobing shall end (BTW: In multiDriver mode we \
scan all devices, so no check is neccesary) */ +         /* Lets decide if the \
autoprobing shall end (BTW: In multiDriver mode we scan all devices, so no check is \
necessary) */  if ( ! multiDriverMode ) {
             // In Single-Driver-mode we only need to check after we reached \
devNumMax  if ( dev == devNumMax && Mixer::mixers().count() != 0 )
@@ -388,7 +388,7 @@
    }
    
    if ( guiprofBest == 0 ) {
-      // Still no profile found. This should usualy not happen. This means one of \
the fllowng things: +      // Still no profile found. This should usually not happen. \
This means one of the following things:  // a) The KMix installation is not OK
       // b) The user has a defective profile in ~/.kde/share/apps/kmix/profiles/
       // c) It is a Backend that ships no default profile (currently this is only \
                Mixer_SUN)
--- trunk/KDE/kdemultimedia/kscd/gui/seekcursor.cpp #874771:874772
@@ -48,10 +48,10 @@
 	return m_step;
 }
 
-void SeekCursor::setStep(qint64 time,int lenght)
+void SeekCursor::setStep(qint64 time,int length)
 {
 
-	m_step = ceil((SECOND_IN_MILLI * (float)lenght)/(float)time);
+	m_step = ceil((SECOND_IN_MILLI * (float)length)/(float)time);
 	kDebug()<<"m_step:"<<m_step;
 }
 
--- trunk/KDE/kdemultimedia/libkcddb/cdinfo.h #874771:874772
@@ -79,7 +79,7 @@
        * Set any data from this track.
        * @p type is case insensitive.
        * For example <code>set("title", "Rock this world")</code>
-       * Usefull for atributes that other apps want to add.
+       * Useful for atributes that other apps want to add.
        * Data will be stored in the local cddb cache, but not sent to the cddb \
                server
        */
       void set(const QString &type, const QVariant &data);
@@ -169,7 +169,7 @@
        * Set any data from this disc.
        * @p type is case insensitive.
        * For example <code>set("title", "Rock this world")</code>
-       * Usefull for atributes that other apps want to add.
+       * Useful for atributes that other apps want to add.
        * Data will be stored in the local cddb cache, but not sent to the cddb \
                server
        */
       void set(const QString &type, const QVariant &data);


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic