]> git.saurik.com Git - wxWidgets.git/commitdiff
fix some typos and other minor problems (#9886)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Sep 2008 20:36:54 +0000 (20:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Sep 2008 20:36:54 +0000 (20:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55448 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/app.h
interface/wx/datetime.h
interface/wx/dnd.h
interface/wx/sizer.h
interface/wx/string.h
interface/wx/xrc/xmlres.h

index 60f7ff619eea7d5336151baa5c5cd3b5c70aef94..4fea75c14b9555bcf9245d79e0ace7be1fcac068 100644 (file)
@@ -107,7 +107,7 @@ public:
 
     /**
         Returns the one and only global application object.
-        Usually ::wxTheApp is usead instead.
+        Usually wxTheApp is used instead.
 
         @see SetInstance()
     */
index c33ec22fb5549ee6c7207ead2bc7544805f9fdf0..457d36fb3ba693d7f7ea08e4c7df6477e6b3aa66 100644 (file)
@@ -1202,10 +1202,10 @@ public:
 
     /**
         Returns the @e "Modified Julian Day Number" (MJD) which is, by
-        definition, is equal to JDN - 2400000.5. The MJDs are simpler to work
-        with as the integral MJDs correspond to midnights of the dates in the
-        Gregorian calendar and not the noons like JDN. The MJD 0 represents
-        Nov 17, 1858.
+        definition, is equal to JDN - 2400000.5.
+        The MJDs are simpler to work with as the integral MJDs correspond to
+        midnights of the dates in the Gregorian calendar and not the noons like
+        JDN. The MJD 0 represents Nov 17, 1858.
     */
     double GetModifiedJulianDayNumber() const;
 
@@ -1410,7 +1410,7 @@ public:
                                     NameFlags flags = Name_Full);
 
     /**
-        Returns @true if DST was used n the given year (the current one by
+        Returns @true if DST was used in the given year (the current one by
         default) in the given country.
     */
     static bool IsDSTApplicable(int year = Inv_Year,
index 3cd15b3ef5d846497257c393e5ea02cd196efc55..8a436fd53d001903eebaba07c81829d1530a2365 100644 (file)
@@ -264,7 +264,7 @@ public:
             @true if the window is scrolling. MSW only.
 
         @return @false if you want default feedback, or @true if you implement
-                 your own feedback. The return values is ignored under GTK.
+                your own feedback. The return value is ignored under GTK.
     */
     virtual bool GiveFeedback(wxDragResult effect);
 
index 0bd0c7cf0bbda0126b964ba85b6785b4b4444048..344c5f205e6d960051532a4c8e87bf90217fde5f 100644 (file)
@@ -302,7 +302,7 @@ public:
     void SetSpacer(const wxSize& size);
 
     /**
-        Set the window to be tracked by thsi item.
+        Set the window to be tracked by this item.
     */
     void SetWindow(wxWindow* window);
 
index 597f14fef1fd037f6364b6b8d6189f366174adc6..69044521b301ef8e04fba4cabe1833300eaa068b 100644 (file)
@@ -818,14 +818,16 @@ public:
     wxString& MakeCapitalized();
 
     /**
-        Converts all characters to lower case and returns the result.
+        Converts all characters to lower case and returns the reference to the
+        modified string.
 
         @see Lower()
     */
     wxString& MakeLower();
 
     /**
-        Converts all characters to upper case and returns the result.
+        Converts all characters to upper case and returns the reference to the
+        modified string.
 
         @see Upper()
     */
index 6179eb4b01434aba1d421fcac60d74a5a9a49670..a680dd78a56b2ce47dafe61e1ea4cf06f85f9829 100644 (file)
@@ -79,7 +79,7 @@ public:
 
     /**
         Compares the XRC version to the argument. Returns -1 if the XRC version
-        is less than the argument, +1 if greater, and 0 if they equal.
+        is less than the argument, +1 if greater, and 0 if they are equal.
     */
     int CompareVersion(int major, int minor, int release,
                        int revision) const;