]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/foldbar/foldpanelitem.h
Expand tabs
[wxWidgets.git] / contrib / include / wx / foldbar / foldpanelitem.h
index 41dd7e65b51417d11a3addbe91a1731cae39bf38..2b8d490e3ac78c67c900dafe79dc63b8ca956327 100644 (file)
@@ -121,13 +121,13 @@ public:
     };
 
     // resize the element, whatever it is. A separator or
-    // line will be always alligned by width or hight
+    // line will be always aligned by width or height
     // depending on orientation of the whole panel
 
     void ResizeItem(int size, bool vertical) {
         if(m_flags & wxFPB_ALIGN_WIDTH)
         {
-            // allign by taking full width
+            // align by taking full width
             int mySize = size - m_leftSpacing - m_rightSpacing;
 
             if(mySize < 0)
@@ -146,7 +146,7 @@ public:
 };
 
 #include <wx/dynarray.h>
-WX_DECLARE_OBJARRAY(wxFoldWindowItem, wxFoldWindowItemArray);
+WX_DECLARE_OBJARRAY_WITH_DECL(wxFoldWindowItem, wxFoldWindowItemArray, class WXDLLIMPEXP_FOLDBAR);
 
 #ifndef _NO_DOXYGEN_
 
@@ -185,7 +185,7 @@ public:
     virtual ~wxFoldPanelItem();
 
     /** Add a window item to the list of items on this panel. The flags are wxFPB_ALIGN_LEFT for a non sizing
-        window element, and wxFPB_ALIGN_WIDTH for a width alligned item. The ySpacing parameter reserves a number
+        window element, and wxFPB_ALIGN_WIDTH for a width aligned item. The ySpacing parameter reserves a number
         of pixels before the window element, and leftSpacing is an indent. rightSpacing is only relevant when the
         style wxFPB_ALIGN_WIDTH is chosen. */
     void AddWindow(wxWindow *window, int flags, int ySpacing, int leftSpacing, int rightSpacing);