]> git.saurik.com Git - wxWidgets.git/commitdiff
No real changes, just fix some typos in comments in wxMSW code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 23 Jan 2013 11:44:26 +0000 (11:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 23 Jan 2013 11:44:26 +0000 (11:44 +0000)
Closes #14994.

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

12 files changed:
src/msw/checklst.cpp
src/msw/dialup.cpp
src/msw/mediactrl_am.cpp
src/msw/mediactrl_wmp10.cpp
src/msw/ole/activex.cpp
src/msw/ole/dataobj.cpp
src/msw/printdlg.cpp
src/msw/regconf.cpp
src/msw/sockmsw.cpp
src/msw/webview_ie.cpp
src/msw/wince/clean_vcp.py
src/msw/window.cpp

index 726bccff524b4adc70ad2f7fad8328e320245582..235019ca178732df33b3c88857ad24795754ef0e 100644 (file)
@@ -61,7 +61,7 @@ namespace
     // space around check mark bitmap in pixels
     static const int CHECKMARK_EXTRA_SPACE = 1;
 
-    // space betwen check bitmap and text label
+    // space between check bitmap and text label
     static const int CHECKMARK_LABEL_SPACE = 2;
 
 } // anonymous namespace
index 6cc504054496715ca25e381b8a45acd7ec5d3c30..4831acbc0f71a2912f2ca762cd339f70fa3c5a3a 100644 (file)
@@ -1284,7 +1284,7 @@ static DWORD wxRasMonitorThread(wxRasThreadData *data)
     }
 
     // we don't need it any more now and if this thread ran, it is our
-    // responsability to free the data
+    // responsibility to free the data
     delete data;
 
     return 0;
index edcb971d6ae5e9cafc927c5bb41a6d6a96286c7c..227df16d5d303029bb06931f9e286c677af36078 100644 (file)
@@ -1540,14 +1540,14 @@ wxString wxAMMediaBackend::GetErrorString(HRESULT hrdsv)
     {
         return wxString::Format(wxT("DirectShow error \"%s\" \n")
                                      wxT("(numeric %X)\n")
-                                     wxT("occured"),
+                                     wxT("occurred"),
                                      szError, (int)hrdsv);
     }
     else
     {
         return wxString::Format(wxT("Unknown error \n")
                                      wxT("(numeric %X)\n")
-                                     wxT("occured"),
+                                     wxT("occurred"),
                                      (int)hrdsv);
     }
 }
index 2cfdb85e260f3a225a9c3c167f9da85376261654..818ae20f2d52469e6809939ffca87e21c2a6708b 100644 (file)
@@ -28,7 +28,7 @@
 // is about to be played - and if the user didn't change the state of the
 // media (m_bWasStateChanged), when set it back to the stop state.
 //
-// The ActiveX control itself is particularily stubborn, calling
+// The ActiveX control itself is particularly stubborn, calling
 // IOleInPlaceSite::OnPosRectChange every file change trying to set itself
 // to something different then what we told it to before.
 //
@@ -861,7 +861,7 @@ bool wxWMP10MediaBackend::CreateControl(wxControl* ctrl, wxWindow* parent,
     IWMPPlayer2* pWMPPlayer2; // Only 2 has windowless video and stretchtofit
     if(m_pWMPPlayer->QueryInterface(IID_IWMPPlayer2, (void**)&pWMPPlayer2) == 0)
     {
-        // We don't check errors here as these arn't particularily important
+        // We don't check errors here as these arn't particularly important
         // and may not be implemented (i.e. stretchToFit on CE)
         pWMPPlayer2->put_windowlessVideo(VARIANT_TRUE);
         pWMPPlayer2->put_stretchToFit(VARIANT_TRUE);
@@ -1472,7 +1472,7 @@ wxFORCE_LINK_THIS_MODULE(wxmediabackend_wmp10)
 // you playing a file through WMP.
 //
 // Here are those hacks. They do indeed "work" as expected - just call
-// SendMessage with one of those myterious values layed out in
+// SendMessage with one of those myterious values laid out in
 // Peter Foot's Friday, May 21, 2004 Blog Post on the issue.
 // (He says they are in a registery section entitled "Pendant Bus")
 //
index d0652d4bcc7182c2b543b7dcde0ab45eddc4b80a..8baad0bf012bcab308717ca737bbd20810d29271 100644 (file)
@@ -1269,7 +1269,7 @@ void wxActiveXContainer::OnKillFocus(wxFocusEvent& event)
 // wxActiveXContainer::MSWTranslateMessage
 //
 // Called for every message that needs to be translated.
-// Some controls might need more keyboard keys to process (CTRL-C, CTRL-A ect),
+// Some controls might need more keyboard keys to process (CTRL-C, CTRL-A etc),
 // In that case TranslateAccelerator should always be called first.
 //---------------------------------------------------------------------------
 bool wxActiveXContainer::MSWTranslateMessage(WXMSG* pMsg)
index a523c1c6e7ac47bba5106f5b7a5cbad66f50e5f1..2c2c44603f67033e73129ec36cbe03f10e10c634 100644 (file)
@@ -930,7 +930,7 @@ void wxDataObject::SetAutoDelete()
     ((wxIDataObject *)m_pIDataObject)->SetDeleteFlag();
     m_pIDataObject->Release();
 
-    // so that the dtor doesnt' crash
+    // so that the dtor doesn't crash
     m_pIDataObject = NULL;
 }
 
@@ -1316,7 +1316,7 @@ size_t wxFileDataObject::GetDataSize() const
     static const size_t sizeOfChar = sizeof(wxChar);
 #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
 
-    // inital size of DROPFILES struct + null byte
+    // initial size of DROPFILES struct + null byte
     size_t sz = sizeof(DROPFILES) + sizeOfChar;
 
     const size_t count = m_filenames.size();
index 7cf410702c05cec428e8bf227460dda2bdad067c..a3da80615abd003186b9a0612d844e9c0040a028 100644 (file)
@@ -396,7 +396,7 @@ void wxWindowsPrintNativeData::InitializeDevMode(const wxString& printerName, Wi
 
     // From MSDN: How To Modify Printer Settings with the DocumentProperties() Function
     // The purpose of this is to fill the DEVMODE with privdata from printer driver.
-    // If we have a printer name and OpenPrinter sucessfully returns
+    // If we have a printer name and OpenPrinter successfully returns
     // this replaces the PrintDlg function which creates the DEVMODE filled only with data from default printer.
     if ( !m_devMode && !printerName.IsEmpty() )
     {
index b8198a80e078bb6d7fc905e1e7910b0e3384f463..9954bc4503117a9c5b2c947bb4f9ab59b3975938 100644 (file)
@@ -79,7 +79,7 @@ wxRegConfig::wxRegConfig(const wxString& appName, const wxString& vendorName,
   bool bDoUseGlobal = (style & wxCONFIG_USE_GLOBAL_FILE) != 0;
 
   // the convention is to put the programs keys under <vendor>\<appname>
-  // (but it can be overridden by specifying the pathes explicitly in strLocal
+  // (but it can be overridden by specifying the paths explicitly in strLocal
   // and/or strGlobal)
   if ( strLocal.empty() || (strGlobal.empty() && bDoUseGlobal) )
   {
index ae92c8873bba16ef218744da74f54560671b8101..57f6b9119964d3d42426ddadd617791f2e9b14bd 100644 (file)
@@ -120,7 +120,7 @@ typedef struct thread_data{
 #ifdef __WXWINCE__
 /* This thread handles socket events on WinCE using WSAEventSelect() as
  * WSAAsyncSelect is not supported. When an event occurs for the socket, it is
- * checked what kind of event happend and the correct message gets posted so
+ * checked what kind of event happened and the correct message gets posted so
  * that the hidden window can handle it as it would in other MSW builds.
 */
 DWORD WINAPI SocketThread(LPVOID data)
index a5e3c130ae9ee3435082509a43848443f8ae378f..b1c12209b63e3e241f1a45306cc6a978847ced62 100644 (file)
@@ -1486,7 +1486,7 @@ HRESULT STDMETHODCALLTYPE VirtualProtocol::Read(void *pv, ULONG cb, ULONG *pcbRe
     }
     else
     {
-        //Dummy return to surpress a compiler warning
+        //Dummy return to suppress a compiler warning
         wxFAIL;
         return INET_E_DOWNLOAD_FAILURE;
     }
index 782c42ffabb9c691845c3c3445311f026335377e..215fc56b7b6fdf6bcb0efb5099ecf64a42cc7b79 100644 (file)
@@ -1,7 +1,7 @@
 '''
 This script will delete dependences from *.vcp files.
 After using this script, next time when you will try to save project,
-you will have wait untill 'Visual Tools' will rebuild all dependencies
+you will have wait until 'Visual Tools' will rebuild all dependencies
 and this process might take HUGE amount of time
 
 Author : Viktor Voroshylo
index 1289c4fcb845651b37b493dc0251667a06276c64..4b07cbdf1d901bcabc5988c1ea0a5c488ad60d96 100644 (file)
@@ -1430,7 +1430,7 @@ WXDWORD wxWindowMSW::MSWGetStyle(long flags, WXDWORD *exstyle) const
     // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
     // don't support overlapping windows and it only makes sense for them and,
     // presumably, gives the system some extra work (to manage more clipping
-    // regions), so avoid it alltogether
+    // regions), so avoid it altogether
 
 
     if ( flags & wxVSCROLL )
@@ -5451,7 +5451,7 @@ bool wxWindowMSW::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
     };
 
 #ifdef wxHAS_XBUTTON
-    // the same messages are used for both auxillary mouse buttons so we need
+    // the same messages are used for both auxiliary mouse buttons so we need
     // to adjust the index manually
     switch ( msg )
     {