X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9d8f813841969fc038193fa07ef44fb640657923..261fb041249ca504a5cdf3d38f67de9367d5bd7b:/include/wx/htmllbox.h

diff --git a/include/wx/htmllbox.h b/include/wx/htmllbox.h
index 2f0675fa62..a7ee460e6f 100644
--- a/include/wx/htmllbox.h
+++ b/include/wx/htmllbox.h
@@ -74,7 +74,6 @@ public:
     virtual void RefreshAll();
     virtual void SetItemCount(size_t count);
 
-
 #if wxUSE_FILESYSTEM
     // retrieve the file system used by the wxHtmlWinParser: if you use
     // relative paths in your HTML, you should use its ChangePathTo() method
@@ -312,8 +311,9 @@ protected:
     virtual wxString OnGetItem(size_t n) const
         { return m_items[n]; }
 
-    wxArrayString m_items;
-    wxArrayPtrVoid m_HTMLclientData;
+    wxArrayString   m_items;
+    wxArrayPtrVoid  m_HTMLclientData;
+
     // Note: For the benefit of old compilers (like gcc-2.8) this should
     // not be named m_clientdata as that clashes with the name of an
     // anonymous struct member in wxEvtHandler, which we derive from.