]> git.saurik.com Git - wxWidgets.git/commitdiff
No changes, just spelling corrections in the comments.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 5 May 2012 14:09:59 +0000 (14:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 5 May 2012 14:09:59 +0000 (14:09 +0000)
Closes #14275.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71366 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/ftp.cpp
src/common/gbsizer.cpp
src/common/gifdecod.cpp
src/common/pickerbase.cpp
src/common/sizer.cpp
src/common/stream.cpp

index 94875a9488a4947bb2e695aee14729ba4df0b8da..dfda3b0c8c5c619c571ced000a264fae41920d28 100644 (file)
@@ -684,7 +684,7 @@ public:
 
         // when checking the result, the stream will
         // almost always show an error, even if the file was
-        // properly transfered, thus, let's just grab the result
+        // properly transferred, thus, let's just grab the result
 
         // we are looking for "226 transfer completed"
         char code = m_ftp->GetResult();
@@ -900,7 +900,7 @@ int wxFTP::GetFileSize(const wxString& fileName)
 
     int filesize = -1;
 
-    // Check for existance of file via wxFTP::FileExists(...)
+    // Check for existence of file via wxFTP::FileExists(...)
     if ( FileExists(fileName) )
     {
         wxString command;
@@ -937,7 +937,7 @@ int wxFTP::GetFileSize(const wxString& fileName)
         }
 
         // Set transfermode back to the original. Only the "SIZE"-command
-        // is dependant on transfermode
+        // is dependent on transfermode
         if ( oldTransfermode != NONE )
         {
             SetTransferMode(oldTransfermode);
index d9451c098327d6d1885935e8548417b650392af7..773c0f0ebc8ed1153f4f7a0781f5beab584e87fe 100644 (file)
@@ -471,7 +471,7 @@ wxSize wxGridBagSizer::CalcMin()
             item->GetPos(row, col);
             item->GetEndPos(endrow, endcol);
 
-            // fill heights and widths upto this item if needed
+            // fill heights and widths up to this item if needed
             while ( (int)m_rowHeights.GetCount() <= endrow )
                 m_rowHeights.Add(m_emptyCellSize.GetHeight());
             while ( (int)m_colWidths.GetCount() <= endcol )
index cd119826f20628255552a816eb5698f962417272..b853ee97a987f11e9e4eee57b8292318e3927f11 100644 (file)
@@ -354,7 +354,7 @@ wxGIFDecoder::dgif(wxInputStream& stream, GIFImage *img, int interl, int bits)
     ab_clr = (1 << bits);
     ab_fin = (1 << bits) + 1;
 
-    // these will change through the decompression proccess
+    // these will change through the decompression process
     ab_bits  = bits + 1;
     ab_free  = (1 << bits) + 2;
     ab_max   = (1 << ab_bits) - 1;
index da1a4ad59d95a484b76a7e2a4d437c7453a98c4f..fa3532995222f2e35437fb3611078c246142e25e 100644 (file)
@@ -82,7 +82,7 @@ bool wxPickerBase::CreateBase(wxWindow *parent,
             return false;
         }
 
-        // set the maximum lenght allowed for this textctrl.
+        // set the maximum length allowed for this textctrl.
         // This is very important since any change to it will trigger an update in
         // the m_picker; for very long strings, this real-time synchronization could
         // become a CPU-blocker and thus should be avoided.
index f964661d2e52530adb157b11b9fa5fba5591f52f..b86f9f83b34cf7dc892a58ee5d41a0022e087731 100644 (file)
@@ -486,7 +486,7 @@ void wxSizerItem::SetDimension( const wxPoint& pos_, const wxSize& size_ )
             // have changed alignment or some other property which would
             // not change the size of the window. In such a case, no
             // wxSizeEvent would normally be generated and thus the
-            // control wouldn't get layed out correctly here.
+            // control wouldn't get laid out correctly here.
 #if 1
             m_window->SetSize(pos.x, pos.y, size.x, size.y,
                               wxSIZE_ALLOW_MINUS_ONE|wxSIZE_FORCE_EVENT );
index 4fe8a17cab7c84038582d7fcb5f1a2789277edd5..f7cd2ea2c58db63aa52248adc2857100f501c1e5 100644 (file)
@@ -955,7 +955,7 @@ wxFileOffset wxInputStream::SeekI(wxFileOffset pos, wxSeekMode mode)
 
         wxASSERT(bytes_read == (size_t)pos);
 
-        // we should now have seeked to the right position...
+        // we should now have sought to the right position...
         return TellI();
     }