[Marble-commits] KDE/kdeedu/marble/src

Jens-Michael Hoffmann jensmh at gmx.de
Mon Oct 5 03:22:15 CEST 2009


SVN commit 1031422 by jmhoffmann:

krazy fixes: spelling errors and en_GB->en_US changes.

 M  +1 -1      lib/AbstractLayer/AbstractLayerContainer.h  
 M  +1 -1      lib/AbstractWorkerThread.h  
 M  +2 -2      lib/DiscCache.cpp  
 M  +1 -1      lib/DownloadQueueSet.h  
 M  +1 -1      lib/MarbleWidget.cpp  
 M  +1 -1      lib/TileLoader.cpp  
 M  +2 -2      lib/geodata/data/GeoDataLod.h  
 M  +2 -2      plugins/render/osmannotate/OsmAnnotatePlugin.cpp  


--- trunk/KDE/kdeedu/marble/src/lib/AbstractLayer/AbstractLayerContainer.h #1031421:1031422
@@ -104,7 +104,7 @@
     /**
      * @brief get the distance between 2 points
      *
-     * This is just a convience method to make certain optimisations 
+     * This is just a convience method to make certain optimizations
      * easier, such as not drawing an @c AbstractLayerData if it is 
      * too close to another
      * @return the square of the distance between the points, if the 
--- trunk/KDE/kdeedu/marble/src/lib/AbstractWorkerThread.h #1031421:1031422
@@ -29,7 +29,7 @@
  * think about Multi-Threading additionally.
  * The AbstractWorkerThread runs the function work() as long as workAvailable()
  * returns true. If there is no work available for a longer time, the thread will
- * switch itself off. As a result you have to call ensureRunning() everytime you
+ * switch itself off. As a result you have to call ensureRunning() every time you
  * want something to be worked on. You'll probably want to call this in your
  * addSchedule() function.
  */
--- trunk/KDE/kdeedu/marble/src/lib/DiscCache.cpp #1031421:1031422
@@ -120,7 +120,7 @@
     if ( !file.open( QIODevice::WriteOnly ) )
         return false;
 
-    // If we overwrite an existing entry, substract the size first
+    // If we overwrite an existing entry, subtract the size first
     if ( m_Entries.contains( key ) )
         m_CurrentCacheSize -= m_Entries.value( key ).second;
 
@@ -149,7 +149,7 @@
     if ( !QFile::remove( keyToFileName( key ) ) )
         return;
 
-    // Substract from current size
+    // Subtract from current size
     m_CurrentCacheSize -= m_Entries.value( key ).second;
 
     // Finally remove entry
--- trunk/KDE/kdeedu/marble/src/lib/DownloadQueueSet.h #1031421:1031422
@@ -42,7 +42,7 @@
      Job is executed by calling the jobs execute() method
 
    now there are different possibilities:
-   1) Job emits jobDone (some error occured, or canceled (kio))
+   1) Job emits jobDone (some error occurred, or canceled (kio))
       Job is disconnected
       signal jobRemoved is emitted
       Job is either moved from m_activeJobs to m_retryQueue
--- trunk/KDE/kdeedu/marble/src/lib/MarbleWidget.cpp #1031421:1031422
@@ -620,7 +620,7 @@
 
     qreal maxBoundingSize = box.height() > box.width() ? box.height() : box.width();
 
-    //prevent devide by zero
+    //prevent divide by zero
     if( maxBoundingSize ) {
         int zoomRadius = ( 0.25 * M_PI ) * ( maxScreenSize / maxBoundingSize );
         setRadius( zoomRadius );
--- trunk/KDE/kdeedu/marble/src/lib/TileLoader.cpp #1031421:1031422
@@ -237,7 +237,7 @@
     }
 
     // tile (valid) has not been found in hash or cache, so load it from disk
-    // and place it in the hash from where it will get transfered to the cache
+    // and place it in the hash from where it will get transferred to the cache
 
     // qDebug() << "load Tile from Disk: " << tileId.toString();
     tile = new TextureTile( tileId );
--- trunk/KDE/kdeedu/marble/src/lib/geodata/data/GeoDataLod.h #1031421:1031422
@@ -68,7 +68,7 @@
     
     
 /*!
-    \brief Returns the mimimum size that is needed for the region to be active
+    \brief Returns the minimum size that is needed for the region to be active
     Returns the minimum number of pixels the region has to be projected on for
     the feature to be considered active. 
     A value of 0 would mean no minimum number of pixels which is also the
@@ -78,7 +78,7 @@
 
     
 /*!
-    \brief Sets the mimimum size that is needed for the region to be active
+    \brief Sets the minimum size that is needed for the region to be active
     Sets the minimum number of \a pixels the region has to be projected on for
     the feature to be considered active.
 */
--- trunk/KDE/kdeedu/marble/src/plugins/render/osmannotate/OsmAnnotatePlugin.cpp #1031421:1031422
@@ -413,7 +413,7 @@
     Q_ASSERT( marbleWidget );
 
     //FIXME why is the QEvent::MousePress not working? caught somewhere else?
-    //does this mean we need to centralise the event handling?
+    //does this mean we need to centralize the event handling?
 
     //so far only accept mouse events
     if( event->type() != QEvent::MouseButtonPress
@@ -444,7 +444,7 @@
     coordinates = GeoDataCoordinates( lon, lat, 0, GeoDataCoordinates::Radian );
 
     if( !isOnGlobe ) {
-        //dont handle this event
+        //don't handle this event
         return false;
     }
 


More information about the Marble-commits mailing list