]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix assorted typos in comments and other non-code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 17 Sep 2013 15:25:59 +0000 (15:25 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 17 Sep 2013 15:25:59 +0000 (15:25 +0000)
Closes #15509.

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

14 files changed:
build/tools/build-wxwidgets.py
include/wx/html/htmlwin.h
include/wx/wizard.h
src/cocoa/colour.mm
src/cocoa/dc.mm
src/cocoa/window.mm
src/generic/dcpsg.cpp
src/generic/dirctrlg.cpp
src/gtk/dcclient.cpp
src/gtk1/dcclient.cpp
src/motif/xmcombo/combobox.doc
src/stc/README.txt
src/stc/gen_iface.py
src/x11/dcclient.cpp

index f04e15f1a84035d46eadc63cfcf06ccb5c758a1e..6212c76efef02be84afee2510decdedb7313d2f9 100755 (executable)
@@ -207,13 +207,13 @@ def main(scriptName, args):
         "mac_framework" : (False, "Install the Mac build as a framework"),
         "mac_framework_prefix" 
                         : (defFwPrefix, "Prefix where the framework should be installed. Default: %s" % defFwPrefix),
-        "cairo"         : (False, "Enable dynamicly loading the Cairo lib for wxGraphicsContext on MSW"),
+        "cairo"         : (False, "Enable dynamically loading the Cairo lib for wxGraphicsContext on MSW"),
         "no_config"     : (False, "Turn off configure step on autoconf builds"),
         "config_only"   : (False, "Only run the configure step and then exit"),
         "rebake"        : (False, "Regenerate Bakefile and autoconf files"),
         "unicode"       : (False, "Build the library with unicode support"),
         "wxpython"      : (False, "Build the wxWidgets library with all options needed by wxPython"),
-        "cocoa"         : (False, "Build the old Mac Cooca port."),
+        "cocoa"         : (False, "Build the old Mac Cocoa port."),
         "osx_cocoa"     : (False, "Build the new Cocoa port"),
         "shared"        : (False, "Build wx as a dynamic library"),
         "extra_make"    : ("", "Extra args to pass on [n]make's command line."),
index 176cc9a46d7aec0a252bc7cc92ff909a78fbfe97..7c716df115fe255efe922b206464a14ab5c5ee49 100644 (file)
@@ -226,8 +226,8 @@ private:
 //                  Purpose of this class is to display HTML page (either local
 //                  file or downloaded via HTTP protocol) in a window. Width of
 //                  window is constant - given in constructor - virtual height
-//                  is changed dynamicly depending on page size.  Once the
-//                  window is created you can set it's content by calling
+//                  is changed dynamically depending on page size.  Once the
+//                  window is created you can set its content by calling
 //                  SetPage(text) or LoadPage(filename).
 // ----------------------------------------------------------------------------
 
index a444f0d7756392a500ee22dcdeddf48ed9ef3806..82dc438ac42674ee96a1d4dd4381a8a60432d6db 100644 (file)
@@ -113,7 +113,7 @@ private:
 // wxWizardPageSimple just returns the pointers given to the ctor and is useful
 // to create a simple wizard where the order of pages never changes.
 //
-// OTOH, it is also possible to dynamicly decide which page to return (i.e.
+// OTOH, it is also possible to dynamically decide which page to return (i.e.
 // depending on the user's choices) as the wizard sample shows - in order to do
 // this, you must derive from wxWizardPage directly.
 // ----------------------------------------------------------------------------
index 50302bd93c2c0991fe7c5e1d6ade94b5c5968b3f..d7607a70d7c649807fb5f1e669f2f6419ce4f4c2 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        src/cococa/colour.mm
+// Name:        src/cocoa/colour.mm
 // Purpose:     wxColour class
 // Author:      David Elliott
 // Modified by:
index e8db94d8e663db1e63d62890b52ab031055c3176..0c10821326f7d89e2bf0e5581674bbcbe4666093 100644 (file)
@@ -649,7 +649,7 @@ void wxCocoaDCImpl::ComputeScaleAndOrigin(void)
   m_scaleX = m_logicalScaleX * m_userScaleX;
   m_scaleY = m_logicalScaleY * m_userScaleY;
 
-  // CMB: if scale has changed call SetPen to recalulate the line width
+  // CMB: if scale has changed call SetPen to recalculate the line width
   if (m_scaleX != origScaleX || m_scaleY != origScaleY)
   {
 #if 0
index 3d52a1944097dad98a94459e92ac3078fbda9e07..9463e33ee63ca0931c5391f55891f51a0ace4640 100644 (file)
@@ -556,7 +556,7 @@ void wxWindowCocoaScrollView::Encapsulate()
     // Set the scroll view autoresizingMask to match the current NSView
     [m_cocoaNSScrollView setAutoresizingMask: [m_owner->GetNSView() autoresizingMask]];
     [m_owner->GetNSView() setAutoresizingMask: NSViewNotSizable];
-    // NOTE: replaceSubView will cause m_cocaNSView to be released
+    // NOTE: replaceSubView will cause m_cocoaNSView to be released
     // except when it hasn't been added into an NSView hierarchy in which
     // case it doesn't need to be and this should work out to a no-op
     m_owner->CocoaReplaceView(m_owner->GetNSView(), m_cocoaNSScrollView);
@@ -1451,10 +1451,10 @@ bool wxWindow::Show(bool show)
         // Create a new view to stand in for the real one (via wxWindowCocoaHider) and replace
         // the real one with the stand in.
         m_cocoaHider = new wxWindowCocoaHider(this);
-        // NOTE: replaceSubview:with will cause m_cocaNSView to be
+        // NOTE: replaceSubview:with will cause m_cocoaNSView to be
         // (auto)released which balances out addSubview
         CocoaReplaceView(cocoaView, m_cocoaHider->GetNSView());
-        // m_coocaNSView is now only retained by us
+        // m_cocoaNSView is now only retained by us
         wxASSERT([m_cocoaHider->GetNSView() superview]);
         wxASSERT(![cocoaView superview]);
     }
index 1fcc3611fa42c78d243701dd10ce5f42afd6ed3e..b5c493b0f499ce409e1b7f13728f45598a0ec39f 100644 (file)
@@ -1659,7 +1659,7 @@ void wxPostScriptDCImpl::ComputeScaleAndOrigin()
 
     wxDCImpl::ComputeScaleAndOrigin();
 
-    // If scale has changed call SetPen to recalulate the line width
+    // If scale has changed call SetPen to recalculate the line width
     // and SetFont to recalculate font size
     if ( wxRealPoint(m_scaleX, m_scaleY) != origScale && m_pen.IsOk() )
     {
index 5b6e3871c12c5d8e45a53236a6adb51b4c512695..bbbc4ef43f82ce78043635995d91c0183d0fc0cd 100644 (file)
@@ -800,7 +800,7 @@ void wxGenericDirCtrl::PopulateNode(wxTreeItemId parentId)
 
 #if (defined(__WINDOWS__) && !defined(__WXWINCE__)) || defined(__DOS__) || defined(__OS2__)
     // Check if this is a root directory and if so,
-    // whether the drive is avaiable.
+    // whether the drive is available.
     if (!wxIsDriveAvailable(dirName))
     {
         data->m_isExpanded = false;
index a11615391e6d7b77e6107050452af4740b202503..2c4a716964b22f66e61bc104cf8b00d4275ccb43 100644 (file)
@@ -1989,7 +1989,7 @@ void wxWindowDCImpl::ComputeScaleAndOrigin()
 
     wxDCImpl::ComputeScaleAndOrigin();
 
-    // if scale has changed call SetPen to recalulate the line width
+    // if scale has changed call SetPen to recalculate the line width
     if ( wxRealPoint(m_scaleX, m_scaleY) != origScale && m_pen.IsOk() )
     {
         // this is a bit artificial, but we need to force wxDC to think the pen
index d0a7c12aba4c2a59c7f4de199f1b6b8bf8501c4e..4c5ead883faa5dd4965ec86fb1bc97c4b9aecf5f 100644 (file)
@@ -2101,7 +2101,7 @@ void wxWindowDCImpl::ComputeScaleAndOrigin()
 
     wxGTKDCImpl::ComputeScaleAndOrigin();
 
-    // if scale has changed call SetPen to recalulate the line width
+    // if scale has changed call SetPen to recalculate the line width
     if ( wxRealPoint(m_scaleX, m_scaleY) != origScale && m_pen.IsOk() )
     {
         // this is a bit artificial, but we need to force wxDC to think the pen
index 41ec4ac5e1549d9960a1a587221841eb5d6e6646..798a7af286df25b30b83a67b6f0af2259ff6f669 100644 (file)
@@ -30,7 +30,7 @@ Whats new? (changes since the last version are marked with an asterisk)
     them. These mirror resources instead belong to child widgets. With 1.23 
     the resource list (which can be queried by XtGetResourceList()) contains 
     entries for all mirror resources although the initial value setting is 
-    always zero. But this should'nt matter. You can switch off these entries
+    always zero. But this shouldn't matter. You can switch off these entries
     by setting -DDONT_LOOK_IN_THE_MIRROR when compiling ComboBox.c.
   - The selection policies XmSINGLE_SELECT and XmBROWSE_SELECT are now
     supported.
@@ -172,7 +172,7 @@ the place you're living in, don't hesitate... 8-)
    This should do it's job with twm as well as fvwm. With olwm you shouldn't
    need to set one of the special resources.
 
-6. The combo box has been reported to run sucessfully on:
+6. The combo box has been reported to run successfully on:
    Silicon Graphics, Sun, HP, IBM RS6000, PC, even VMS!
    Linux, of course...!
    Attention VMS folks! You'll find two files called "motif11.opt" or 
index 4b66121e643718f9b92b64ccb91eac60d6c4a6d4..a6b185a314110870522dad72e64f43ff75813270 100644 (file)
@@ -2,7 +2,7 @@ This contrib is the wxStyledTextCtrl, which is a wrapper around the
 Scintilla edit control.  (See www.scintilla.org)
 
 There is still VERY MUCH to be done, most notable of which is a more
-advanced sample that exercises more of the code.  (I havn't tested
+advanced sample that exercises more of the code.  (I haven't tested
 AutoComplete or CallTips, or most of the event types at all yet.)  And
 also documentation, adding wrappers for some new scintilla
 functionality, building and testing on wxGTK, etc.  Be patient, it all
@@ -11,11 +11,11 @@ will get there soon.
 
 
 Let me describe a bit about the architecture I am implementing...
-Obviously there is the Platform layer which implements the varioius
+Obviously there is the Platform layer which implements the various
 platform classes by using wxWindows classes and filling in where
 needed.  Then there is a ScintillaWX class that is derived from
 ScintillaBase and implements the necessary virtual methods that
-Scintilla needs to fully funciton.  This class however is not meant to
+Scintilla needs to fully function.  This class however is not meant to
 ever be used directly by wx programmers.  I call it one end of the
 bridge between the wx and Scintilla worlds.  The other end of the
 bridge is a class called wxStyledTextCtrl that looks, feels and acts
@@ -37,7 +37,7 @@ wxStyledTextCtrl derives from wxControl so it has a window that can be
 drawn upon.  When a wxStyledTextCtrl is constructed it constructs a
 ScintillaWX for itself and passes itself to the scintilla object to be
 set as the wMain and wDraw attributes.  All method calls on the STC
-are sent over the bridge in the form of calls to ScintiallWX::WndProc.
+are sent over the bridge in the form of calls to ScintillaWX::WndProc.
 All notifications are sent back over the bridge and turned into
 wxEvents.
 
index af2adbbb587d2012745c467a0be1eb397bc1a191..7361db459c99986a4033a759ee1555d41fbb04c9 100755 (executable)
@@ -58,7 +58,7 @@ cmdValues = [ 2011,
             ]
 
 
-# Should a funciton be also generated for the CMDs?
+# Should a function be also generated for the CMDs?
 FUNC_FOR_CMD = 1
 
 
index 813418e7b6c2354f6f6905c0ff59016fe8682692..1b4f0c303bba4680a97f83447fb925da99c4790a 100644 (file)
@@ -2321,7 +2321,7 @@ void wxWindowDCImpl::ComputeScaleAndOrigin()
 
     wxDCImpl::ComputeScaleAndOrigin();
 
-    /* CMB: if scale has changed call SetPen to recalulate the line width */
+    /* CMB: if scale has changed call SetPen to recalculate the line width */
     if ((m_scaleX != origScaleX || m_scaleY != origScaleY) &&
         (m_pen.IsOk()))
     {