]> git.saurik.com Git - wxWidgets.git/commitdiff
no code changes, fixed some typos
authorDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Mon, 9 Jan 2012 14:04:25 +0000 (14:04 +0000)
committerDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Mon, 9 Jan 2012 14:04:25 +0000 (14:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70302 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/overviews/nonenglish.h
docs/doxygen/overviews/unicode.h
docs/doxygen/overviews/xrc.h
include/wx/affinematrix2d.h
include/wx/affinematrix2dbase.h
include/wx/eventfilter.h
include/wx/tbarbase.h
interface/wx/defs.h
interface/wx/eventfilter.h
src/common/affinematrix2d.cpp

index 3cd30380e4633f7f5c793dea928962d2f4b70770..37fc8cae43679d9a0afecd0d41628f3d91467133 100644 (file)
@@ -110,7 +110,7 @@ wxLocale::GetSystemEncodingName) by the user's operating system.
 By convention, you should only use characters without diacritics (i.e. 7-bit
 ASCII strings) for msgids in the source code and write them in English.
 
 By convention, you should only use characters without diacritics (i.e. 7-bit
 ASCII strings) for msgids in the source code and write them in English.
 
-If you port software to wxWindows, you may be confronted with legacy source
+If you port software to wxWidgets, you may be confronted with legacy source
 code containing non-English string literals. Instead of translating the strings
 in the source code to English and putting the original strings into message
 catalog, you may configure wxWidgets to use non-English msgids and translate to
 code containing non-English string literals. Instead of translating the strings
 in the source code to English and putting the original strings into message
 catalog, you may configure wxWidgets to use non-English msgids and translate to
index 6b3119296d3f1eb94d1ebada15acdf21bbe74f40..4013ff8e06ed2494d3979c60f94db343528c4322 100644 (file)
@@ -198,7 +198,7 @@ work. Here are some examples, using a wxString object @c s and some integer @c
 n:
 
  - Writing @code switch ( s[n] ) @endcode doesn't work because the argument of
 n:
 
  - Writing @code switch ( s[n] ) @endcode doesn't work because the argument of
-   the switch statement must an integer expression so you need to replace
+   the switch statement must be an integer expression so you need to replace
    @c s[n] with @code s[n].GetValue() @endcode. You may also force the
    conversion to @c char or @c wchar_t by using an explicit cast but beware that
    converting the value to char uses the conversion to current locale and may
    @c s[n] with @code s[n].GetValue() @endcode. You may also force the
    conversion to @c char or @c wchar_t by using an explicit cast but beware that
    converting the value to char uses the conversion to current locale and may
index cb9aae7c960b4585b09bde806bd582f4d70cd4d7..d9d126fe6aaf25a10bcb51e8e7633952a71f6806 100644 (file)
@@ -31,7 +31,7 @@ There are several advantages to using XRC resources:
 @li The XRC format uses sizers for flexibility, allowing dialogs to be
     resizable and highly portable.
 @li The XRC format is a wxWidgets standard, and can be generated or
 @li The XRC format uses sizers for flexibility, allowing dialogs to be
     resizable and highly portable.
 @li The XRC format is a wxWidgets standard, and can be generated or
-    postprocessed by any program that understands it. As it is basedon the XML
+    postprocessed by any program that understands it. As it is based on the XML
     standard, existing XML editors can be used for simple editing purposes.
 
 XRC was written by Vaclav Slavik.
     standard, existing XML editors can be used for simple editing purposes.
 
 XRC was written by Vaclav Slavik.
index cb94be4da10f0d6da554fe4f7906f28133e76a3f..6516cd46f5b5c52af1313220ee040d0a12f2a106 100644 (file)
@@ -4,7 +4,7 @@
 // Author:       Based on wxTransformMatrix by Chris Breeze, Julian Smart
 // Created:      2011-04-05
 // Copyright:    (c) wxWidgets team
 // Author:       Based on wxTransformMatrix by Chris Breeze, Julian Smart
 // Created:      2011-04-05
 // Copyright:    (c) wxWidgets team
-// Licence:      wxWidgets licence
+// Licence:      wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_AFFINEMATRIX2D_H_
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_AFFINEMATRIX2D_H_
index 30b3256500afac787e14c62108e65361c0731c10..94b1955aa3b781f2655acd486e6514b6fa7b0c70 100644 (file)
@@ -4,7 +4,7 @@
 // Author:       Catalin Raceanu
 // Created:      2011-04-06
 // Copyright:    (c) wxWidgets team
 // Author:       Catalin Raceanu
 // Created:      2011-04-06
 // Copyright:    (c) wxWidgets team
-// Licence:      wxWidgets licence
+// Licence:      wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_AFFINEMATRIX2DBASE_H_
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_AFFINEMATRIX2DBASE_H_
index 0aec4a3f8ff9e60757b15cf1f4c2e36daaba16d2..60ba223197d7fa473ba47581279c2f144ec7fdd4 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     wxEventFilter class declaration.
 // Author:      Vadim Zeitlin
 // Created:     2011-11-21
 // Purpose:     wxEventFilter class declaration.
 // Author:      Vadim Zeitlin
 // Created:     2011-11-21
-// RCS-ID:      $Id: wxhead.h,v 1.12 2010-04-22 12:44:51 zeitlin Exp $
+// RCS-ID:      $Id$
 // Copyright:   (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 // Copyright:   (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -51,7 +51,7 @@ public:
 
     // This method allows to filter all the events processed by the program, so
     // you should try to return quickly from it to avoid slowing down the
 
     // This method allows to filter all the events processed by the program, so
     // you should try to return quickly from it to avoid slowing down the
-    // program to the crawl.
+    // program to a crawl.
     //
     // Return value should be -1 to continue with the normal event processing,
     // or true or false to stop further processing and pretend that the event
     //
     // Return value should be -1 to continue with the normal event processing,
     // or true or false to stop further processing and pretend that the event
index f6ef259ce39b6b3cbc7f9dd06c0e473440c0396d..45e5ac4cb565bc3f8898bb3df5570ae9a4d0d0c4 100644 (file)
@@ -473,7 +473,7 @@ public:
         { return GetToolBitmapSize(); }
 
     // returns a (non separator) tool containing the point (x, y) or NULL if
         { return GetToolBitmapSize(); }
 
     // returns a (non separator) tool containing the point (x, y) or NULL if
-    // there is no tool at this point (corrdinates are client)
+    // there is no tool at this point (coordinates are client)
     virtual wxToolBarToolBase *FindToolForPosition(wxCoord x,
                                                    wxCoord y) const = 0;
 
     virtual wxToolBarToolBase *FindToolForPosition(wxCoord x,
                                                    wxCoord y) const = 0;
 
index c1fe02ada740bc224cb03f38f9de255533751955..8052ca2a492c19eac83c326ffaab8850210a2653 100644 (file)
@@ -896,7 +896,7 @@ enum wxKeyCode
       * to improve compatibility with other systems, WXK_RAW_CONTROL may
       * be used to obtain the state of the actual 'Control' key
       * ('WXK_CONTROL' would obtain the status of the 'Command' key).
       * to improve compatibility with other systems, WXK_RAW_CONTROL may
       * be used to obtain the state of the actual 'Control' key
       * ('WXK_CONTROL' would obtain the status of the 'Command' key).
-      * Under Windows/Linux/Others, this is equivalent to WXK_RAW_CONTROL
+      * Under Windows/Linux/Others, this is equivalent to WXK_CONTROL
       */
     WXK_RAW_CONTROL,
     WXK_MENU,
       */
     WXK_RAW_CONTROL,
     WXK_MENU,
index 4138f1fbb32a63c9af124cd80ee63217f27b2d4a..5cb0ef837047336c660b4c6aeead95453f94e49c 100644 (file)
@@ -121,7 +121,7 @@ public:
 
         This method allows to filter all the events processed by the program,
         so you should try to return quickly from it to avoid slowing down the
 
         This method allows to filter all the events processed by the program,
         so you should try to return quickly from it to avoid slowing down the
-        program to the crawl.
+        program to a crawl.
 
         Although the return type of this method is @c int, this is only due to
         backwards compatibility concerns and the actual return value must be
 
         Although the return type of this method is @c int, this is only due to
         backwards compatibility concerns and the actual return value must be
index b4605d4e53d26b60b0f25d3d220cd2f07e7e4f68..5df1bac1e6a440004c72e9c5b31eef12f98e822e 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Based on wxTransformMatrix by Chris Breeze, Julian Smart
 // Created:     2011-04-05
 // Copyright:   (c) wxWidgets team
 // Author:      Based on wxTransformMatrix by Chris Breeze, Julian Smart
 // Created:     2011-04-05
 // Copyright:   (c) wxWidgets team
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
 ///////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"