]> git.saurik.com Git - wxWidgets.git/commitdiff
No real changes, just fix spelling errors in the documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 23 Feb 2012 13:56:10 +0000 (13:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 23 Feb 2012 13:56:10 +0000 (13:56 +0000)
Closes #14038.

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

12 files changed:
interface/wx/bitmap.h
interface/wx/filesys.h
interface/wx/init.h
interface/wx/intl.h
interface/wx/list.h
interface/wx/propgrid/manager.h
interface/wx/ribbon/toolbar.h
interface/wx/richtext/richtextctrl.h
interface/wx/sharedptr.h
interface/wx/sizer.h
interface/wx/webviewarchivehandler.h
interface/wx/xml/xml.h

index cf62947f789115770c4e86a3ab75d6fd330bd419..2edeee959f439365a8ced2955c37b04ebe3fd960 100644 (file)
@@ -165,7 +165,7 @@ public:
     If you need direct access the bitmap data instead going through
     drawing to it using wxMemoryDC you need to use the wxPixelData
     class (either wxNativePixelData for RGB bitmaps or wxAlphaPixelData
-    for bitmaps with an additionaly alpha channel).
+    for bitmaps with an additionally alpha channel).
 
     Note that many wxBitmap functions take a @e type parameter, which is a 
     value of the ::wxBitmapType enumeration.
index 01e5fd12feac367e7ec9280a15c7aa9d7a56bd7d..0fb4383841028d8591826620a424ba92ef140e6c 100644 (file)
@@ -243,7 +243,7 @@ public:
 
     /**
         Detaches the stream from the wxFSFile object. That is, the
-        stream obtained with GetStream() will continue its existance
+        stream obtained with GetStream() will continue its existence
         after the wxFSFile object is deleted.
 
         You will have to delete the stream yourself.
index 163e5f7252770473919b7ef8d898a332b441d605..a673a0b7e0581d5fde701bc6803ac1bc3aad2356 100644 (file)
@@ -51,7 +51,7 @@ public:
     If the function returns true, the initialization was successful and the
     global wxApp object ::wxTheApp has been created. Moreover, wxEntryCleanup()
     must be called afterwards. If the function returns false, a catastrophic
-    initialization error occured and (at least the GUI part of) the library
+    initialization error occurred and (at least the GUI part of) the library
     can't be used at all.
 
     Notice that parameters @c argc and @c argv may be modified by this
index 4dfa97b8af6b3a42788f49ae413505f8451b8131..85264edfdff441ddf0d6ff00ef044f06cea7dc32 100644 (file)
@@ -19,7 +19,7 @@ enum wxLayoutDirection
 };
 
 /**
-    Encapsulates a ::wxLanguage indentifier together with OS-specific information
+    Encapsulates a ::wxLanguage identifier together with OS-specific information
     related to that language.
 
     @beginWxPerlOnly
index 32d115cf96d90c317920a414efb24130ee42164b..7d2f566c631d56a4eb84dfef2542121f3d4e31e8 100644 (file)
@@ -155,7 +155,7 @@ public:
     void Erase(const compatibility_iterator& iter);
 
     /**
-        Returns the iterator refering to @a object or @NULL if none found.
+        Returns the iterator referring to @a object or @NULL if none found.
     */
     wxList<T>::compatibility_iterator Find(T* object) const;
 
@@ -203,7 +203,7 @@ public:
     bool IsEmpty() const;
 
     /**
-        Returns the iterator refering to the object at the given
+        Returns the iterator referring to the object at the given
         @a index in the list.
     */
     wxList<T>::compatibility_iterator Item(size_t index) const;
index 7affc2818d00c6aed5a29f0235e8e7d8ae02f7ef..7b5df8516a6c74ac4d10f8fdf26c6bb7ef892018 100644 (file)
@@ -147,7 +147,7 @@ public:
     acquire the internal grid (GetGrid()) or wxPropertyGridPage object (GetPage()).
 
     wxPropertyGridManager constructor has exact same format as wxPropertyGrid
-    constructor, and basicly accepts same extra window style flags (albeit also
+    constructor, and basically accepts same extra window style flags (albeit also
     has some extra ones).
 
     Here's some example code for creating and populating a wxPropertyGridManager:
index 3ab156b770751d1a077fa1f9ce6d7b7e864a3186..4cc0638776064bbcc1b6ff97d8e12b796ede095e 100644 (file)
@@ -218,7 +218,7 @@ public:
 
         @param pos
             Position of the new tool (number of tools and separators from the
-            begining of the toolbar).
+            beginning of the toolbar).
         @param tool_id
             ID of the new tool (used for event callbacks).
         @param bitmap
@@ -284,7 +284,7 @@ public:
     /**
         This function behaves like DeleteTool() but it deletes the tool at the
         specified position and not the one with the given id.
-        Usefull to delete separators.
+        Useful to delete separators.
 
         @since 2.9.4
     */
index 7cbe45a4d1d22ba054eda6e95a38dfa484b5a75e..c6ad67f802adac2416d712e2c0861d369b319c17 100644 (file)
@@ -2247,7 +2247,7 @@ public:
         { }
 
     /**
-        Returns the buffer position at which the event occured.
+        Returns the buffer position at which the event occurred.
     */
     long GetPosition() const { return m_position; }
 
index 47b73c0d601b4f200899fd7ee2a80d16c0de125e..92e94a8759f6c7531ccdbb5eaa10435fcd16c139 100644 (file)
@@ -9,7 +9,7 @@
 /**
     A smart pointer with non-intrusive reference counting.
 
-    It is modeled after @c boost::shared_ptr<> and can be used with STL
+    It is modelled after @c boost::shared_ptr<> and can be used with STL
     containers and wxVector<T> unlike @c std::auto_ptr<> and wxScopedPtr<T>.
 
     @library{wxbase}
index 95a6f7599c451ebe13e9a4ff04b50f5e4fb2fb27..7bc97a6e788d92c8ef82277474e317745263f0eb 100644 (file)
@@ -410,7 +410,7 @@ public:
 
     /**
        Inform sizer about the first direction that has been decided (by
-       parent item).  Returns true if it made use of the informtion (and
+       parent item).  Returns true if it made use of the information (and
        recalculated min size).
     */
     virtual bool InformFirstDirection(int direction, int size, int availableOtherDir);
index bb854754a3cc691ef86895da5e1c2d6977187153..977c60494e7bf4b13fd6b31bfdcdd3b37ef53bac 100644 (file)
@@ -12,7 +12,7 @@
     A custom handler for the file scheme which also supports loading from 
     archives. The syntax for wxWebViewArchiveHandler differs from virtual file 
     systems in the rest of wxWidgets by using a syntax such as
-    <code> scheme:///C:/exmaple/docs.zip;protocol=zip/main.htm </code> 
+    <code> scheme:///C:/example/docs.zip;protocol=zip/main.htm </code>
     Currently the only supported protocol is @c zip. 
    
     @since 2.9.3
@@ -29,4 +29,4 @@ public:
     */
     wxWebViewArchiveHandler(const wxString& scheme);
     virtual wxFSFile* GetFile(const wxString &uri);
-};
\ No newline at end of file
+};
index 8605491dd16c63ac8eff3832c4767148305f8869..7bb23cd54b668135ff5da493f7413fee412092af 100644 (file)
@@ -581,7 +581,7 @@ public:
         any prologue nodes, but IsOk() will return @false since the root entity
         will be missing.
 
-        Note that the caller is reponsible for deleting the returned node in order
+        Note that the caller is responsible for deleting the returned node in order
         to avoid memory leaks.
     */
     wxXmlNode* DetachRoot();