]> git.saurik.com Git - wxWidgets.git/commitdiff
Miscellaneous spelling and typo fixes in the documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 1 Dec 2012 00:14:31 +0000 (00:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 1 Dec 2012 00:14:31 +0000 (00:14 +0000)
Closes #14866.

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

docs/doxygen/overviews/internationalization.h
interface/wx/dcgraph.h
interface/wx/filepicker.h
interface/wx/process.h
interface/wx/string.h

index 2af1d2a22477acc4b34df064c3d749eb819ece29..a1f48ed474e112f8fbb5843eba235ea0160b452e 100644 (file)
@@ -17,7 +17,7 @@ more than just translating its text messages to another message - date, time
 and currency formats need changing too, some languages are written left to
 right and others right to left, character encoding may differ and many other
 things may need changing too - it is a necessary first step. wxWidgets provides
-facilities for message translation with it's wxLocale class and is itself fully
+facilities for message translation with its wxLocale class and is itself fully
 translated into several languages. Please consult wxWidgets home page for the
 most up-to-date translations - and if you translate it into one of the
 languages not done yet, your translations would be gratefully accepted for
index 0683c3a1fc403e620f1cf14e5ecfbe46f8d7eac9..afaed92a843fffd1f6b3755e1bb6aa353016f949 100644 (file)
@@ -36,7 +36,7 @@ public:
     wxGCDC( const wxPrinterDC& printerDC );
 
     /**
-       Construct a wxGCDC from an existing grtaphics context.
+       Construct a wxGCDC from an existing graphics context.
     */
     wxGCDC(wxGraphicsContext* context);
 
index 01ae14dc3d1d68b4543f07061242bbb089fcd808..ac57732ed82b51d5135c79c6e7736716e9ac054d 100644 (file)
@@ -304,8 +304,8 @@ public:
     void SetInitialDirectory(const wxString& dir);
 
     /**
-        Sets the absolute path of  (the default converter uses current locale's
-        charset)the currently selected directory.
+        Sets the absolute path of the currently selected directory (the default converter uses current locale's
+        charset).
         This must be a valid directory if @c wxDIRP_DIR_MUST_EXIST style was given.
     */
     void SetPath(const wxString& dirname);
index edbe214ffaf555281fdc4b1ac01de4be8b0557f4..b47276ebc4c61982e4592545a5cafa2158b5dd1a 100644 (file)
@@ -96,7 +96,7 @@ public:
 
     /**
         Detaches this event handler from the parent specified in the constructor
-        (see wxEvtHandler::Unlink() for a similar but not identic function).
+        (see wxEvtHandler::Unlink() for a similar but not identical function).
     
         Normally, a wxProcess object is deleted by its parent when it receives the
         notification about the process termination. 
index 93ff1cbee89fe22ca29491665960a80b3f59c8d5..d7ade829203b440e8a1481e06bb902a6baf6cd58 100644 (file)
@@ -1795,7 +1795,7 @@ public:
     you can do:
     @code
         if (wxStringCheck<wxIsdigit>(myString))
-            ... // the entire string contains oly digits!
+            ... // the entire string contains only digits!
         else
             ... // at least one character of myString is not a digit
     @endcode